Skip to content

Commit

Permalink
Project restructure (#4)
Browse files Browse the repository at this point in the history
* Perform automatic project sync changes

* Restructure project

* Fix lint issues

* Fix lint issues
  • Loading branch information
cjaehnen authored Sep 2, 2024
1 parent 259324b commit 29446bf
Show file tree
Hide file tree
Showing 29 changed files with 757 additions and 315 deletions.
10 changes: 10 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# @global-owner1 and @global-owner2 will be requested for
# review when someone opens a pull request.

# Teams can be specified as code owners as well. Teams should
# be identified in the format @org/team-name. Teams must have
# explicit write access to the repository. In this example,
# the octocats team in the octo-org organization owns all .txt files.
* @opengood-aio/owners
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ name: build
on:
push:
branches:
- main
- '**'
- '!main'
paths-ignore:
- .github/workflows/cancel.yml
- .github/workflows/release.yml
- .github/workflows/*
- .gitignore
- gradle.properties
- LICENSE
- README.md

jobs:
build:
uses: opengoodio/central-workflows/.github/workflows/gradle-lib-build.yml@main
uses: opengood-aio/central-workflows/.github/workflows/gradle-lib-build.yml@main
with:
run-gradle-validation: true
secrets:
fossa-api-key: ${{ secrets.FOSSA_API_KEY }}
codecov-token: ${{ secrets.CODECOV_TOKEN }}
4 changes: 3 additions & 1 deletion .github/workflows/cancel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ on: [push]

jobs:
cancel:
uses: opengoodio/central-workflows/.github/workflows/workflow-cancel.yml@main
uses: opengood-aio/central-workflows/.github/workflows/workflow-cancel.yml@main
secrets:
workflow-token: ${{ secrets.WORKFLOW_TOKEN }}
21 changes: 21 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CodeQL

on:
pull_request:
types:
- closed
- labeled
branches:
- main
paths-ignore:
- .github/workflows/*
- .gitignore
- gradle.properties
- LICENSE
- README.md

jobs:
build:
uses: opengood-aio/central-workflows/.github/workflows/codeql-analyze.yml@main
with:
java-version: 21
19 changes: 19 additions & 0 deletions .github/workflows/dependencies-submit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: dependencies-submit

on:
pull_request:
types:
- closed
- labeled
branches:
- main
paths-ignore:
- .github/workflows/*
- .gitignore
- gradle.properties
- LICENSE
- README.md

jobs:
dependencies-submit:
uses: opengood-aio/central-workflows/.github/workflows/gradle-dependencies-submit.yml@main
19 changes: 15 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,30 @@
name: release

on:
push:
pull_request:
types:
- closed
- labeled
branches:
- main
paths-ignore:
- .github/workflows/*
- .gitignore
- gradle.properties
- LICENSE
- README.md

jobs:
release:
uses: opengoodio/central-workflows/.github/workflows/gradle-oss-release.yml@main
uses: opengood-aio/central-workflows/.github/workflows/gradle-maven-central-release.yml@main
with:
git-email: ${{ vars.GIT_EMAIL }}
git-user: ${{ vars.GIT_USER }}
run-gradle-validation: true
secrets:
gpg-signing-key-id: ${{ secrets.GPG_SIGNING_KEY_ID }}
gpg-signing-password: ${{ secrets.GPG_SIGNING_PASSWORD }}
gpg-signing-private-key: ${{ secrets.GPG_SIGNING_PRIVATE_KEY }}
oss-repo-username: ${{ secrets.OSS_REPO_USERNAME }}
oss-repo-password: ${{ secrets.OSS_REPO_PASSWORD }}
maven-central-repo-username: ${{ secrets.MAVEN_CENTRAL_REPO_USERNAME }}
maven-central-repo-password: ${{ secrets.MAVEN_CENTRAL_REPO_PASSWORD }}
workflow-token: ${{ secrets.WORKFLOW_TOKEN }}
214 changes: 206 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,19 +1,217 @@
########################################################################################################################

### macOS ###
.DS_Store

### IntelliJ IDEA ###
########################################################################################################################

### GitHub Actions ###
\~/

########################################################################################################################

### Kotlin and Java ###

# Kotlin
.kotlin/

# IntelliJ IDEA
.idea
*.iml
*.ipr
*.iws
.idea
generated/
generated_tests/
out/

### Gradle ###
# NetBeans
/.nb-gradle/
/dist/
/nbbuild/
/nbdist/
/nbproject/private/
!**/src/main/**/build/
!**/src/test/**/build/

# STS
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

# VS Code
.vscode/

# Gradle
!gradle/wrapper/gradle-wrapper.jar
.gradle
build/

### GitHub Actions ###
\~/
# Maven
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/

# Files Containing Credentials
application-*.properties
http-client.private.env.json
!application-cloud.properties
!application-default.properties

# Native Build Files
null

# Caches
.cache-proxy/

# Cert Stores
cert-stores/

# Log Files
logs/

# Scratch Files
scratch*.http

########################################################################################################################

### Python ###

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask
instance/
.webassets-cache

# Scrapy
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
Pipfile.lock

# poetry
poetry.lock

# pdm
.pdm.toml

# PEP 582
__pypackages__/

# Celery
celerybeat-schedule
celerybeat.pid

# SageMath
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# PyCharm
.idea/
Loading

0 comments on commit 29446bf

Please sign in to comment.