-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Perform automatic project sync changes * Restructure project * Fix lint issues * Fix lint issues
- Loading branch information
Showing
29 changed files
with
757 additions
and
315 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
Oops, something went wrong.