-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
200 additions
and
208 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,32 +1,32 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
day: "wednesday" | ||
time: "11:00" | ||
timezone: "Europe/Berlin" | ||
commit-message: | ||
prefix: "Dependency" | ||
include: "scope" | ||
- package-ecosystem: "maven" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
day: "wednesday" | ||
time: "11:00" | ||
timezone: "Europe/Berlin" | ||
commit-message: | ||
prefix: "Dependency" | ||
include: "scope" | ||
- package-ecosystem: "pip" | ||
directory: "/docs/" | ||
schedule: | ||
interval: "weekly" | ||
day: "wednesday" | ||
time: "11:00" | ||
timezone: "Europe/Berlin" | ||
commit-message: | ||
prefix: "Dependency" | ||
include: "scope" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
day: "wednesday" | ||
time: "11:00" | ||
timezone: "Europe/Berlin" | ||
commit-message: | ||
prefix: "Dependency" | ||
include: "scope" | ||
- package-ecosystem: "maven" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
day: "wednesday" | ||
time: "11:00" | ||
timezone: "Europe/Berlin" | ||
commit-message: | ||
prefix: "Dependency" | ||
include: "scope" | ||
- package-ecosystem: "pip" | ||
directory: "/docs/" | ||
schedule: | ||
interval: "weekly" | ||
day: "wednesday" | ||
time: "11:00" | ||
timezone: "Europe/Berlin" | ||
commit-message: | ||
prefix: "Dependency" | ||
include: "scope" |
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,17 +1,17 @@ | ||
name: Maven Dependency Updates | ||
|
||
on: | ||
schedule: | ||
- cron: "00 09 * * 2" | ||
schedule: | ||
- cron: "00 09 * * 2" | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
update: | ||
uses: ardoco/actions/.github/workflows/maven-update.yml@main | ||
with: | ||
with-submodules: true | ||
runs-on: self-hosted | ||
secrets: | ||
PAT: ${{ secrets.SDQ_TOKEN }} | ||
update: | ||
uses: ardoco/actions/.github/workflows/maven-update.yml@main | ||
with: | ||
with-submodules: true | ||
runs-on: self-hosted | ||
secrets: | ||
PAT: ${{ secrets.SDQ_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,29 +1,29 @@ | ||
name: Maven Deploy | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' # Build the latest develop-SNAPSHOT | ||
paths: | ||
- '**/src/**' | ||
- '**/pom.xml' | ||
- 'pom.xml' | ||
push: | ||
branches: | ||
- 'main' # Build the latest develop-SNAPSHOT | ||
paths: | ||
- '**/src/**' | ||
- '**/pom.xml' | ||
- 'pom.xml' | ||
|
||
# Publish `v1.2.3` tags as releases. | ||
tags: | ||
- v* | ||
|
||
# Publish `v1.2.3` tags as releases. | ||
tags: | ||
- v* | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
publish: | ||
uses: ardoco/actions/.github/workflows/maven.yml@main | ||
with: | ||
deploy: true | ||
with-submodules: true | ||
secrets: | ||
OSSRH_USER: ${{secrets.OSSRH_USER}} | ||
OSSRH_TOKEN: ${{secrets.OSSRH_TOKEN}} | ||
GPG_KEY: ${{secrets.GPG_KEY}} | ||
publish: | ||
uses: ardoco/actions/.github/workflows/maven.yml@main | ||
with: | ||
deploy: true | ||
with-submodules: true | ||
secrets: | ||
OSSRH_USER: ${{secrets.OSSRH_USER}} | ||
OSSRH_TOKEN: ${{secrets.OSSRH_TOKEN}} | ||
GPG_KEY: ${{secrets.GPG_KEY}} | ||
|
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,36 +1,36 @@ | ||
name: Documentation | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: "v**" | ||
paths: | ||
- 'docs/**' | ||
- '.github/workflows/docs.yml' | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
tags: "v**" | ||
paths: | ||
- 'docs/**' | ||
- '.github/workflows/docs.yml' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.5.2 | ||
with: | ||
token: ${{ secrets.SDQ_TOKEN }} | ||
- uses: actions/checkout@v3.5.2 | ||
with: | ||
repository: ${{ github.repository }}.wiki | ||
path: wiki | ||
token: ${{ secrets.SDQ_TOKEN }} | ||
|
||
- name: Remove contents in Wiki | ||
working-directory: wiki | ||
run: ls -A1 | grep -v '.git' | xargs rm -r | ||
|
||
- name: Copy Wiki from Docs folder | ||
run: cp -r ./docs/. ./wiki | ||
|
||
- name: Deploy 🚀 | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
repository: wiki | ||
docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.5.2 | ||
with: | ||
token: ${{ secrets.SDQ_TOKEN }} | ||
- uses: actions/checkout@v3.5.2 | ||
with: | ||
repository: ${{ github.repository }}.wiki | ||
path: wiki | ||
token: ${{ secrets.SDQ_TOKEN }} | ||
- name: Remove contents in Wiki | ||
working-directory: wiki | ||
run: ls -A1 | grep -v '.git' | xargs rm -r | ||
- name: Copy Wiki from Docs folder | ||
run: cp -r ./docs/. ./wiki | ||
- name: Deploy 🚀 | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
repository: wiki |
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,32 +1,32 @@ | ||
name: Format | ||
|
||
on: | ||
pull_request: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
format: | ||
runs-on: ubuntu-latest | ||
format: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
fetch-depth: 0 | ||
- uses: joshlong/java-version-export-github-action@v28 | ||
id: jve | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: ${{ steps.jve.outputs.java_major_version }} | ||
cache: 'maven' | ||
- name: Format with Spotless in Maven | ||
run: mvn -B spotless:apply --file pom.xml | ||
- name: Commit changes | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: Apply formatting changes | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
fetch-depth: 0 | ||
- uses: joshlong/java-version-export-github-action@v28 | ||
id: jve | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: ${{ steps.jve.outputs.java_major_version }} | ||
cache: 'maven' | ||
- name: Format with Spotless in Maven | ||
run: mvn -B spotless:apply --file pom.xml | ||
- name: Commit changes | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: Apply formatting changes |
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,23 +1,23 @@ | ||
name: Maven Release (Manual) | ||
|
||
on: | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
inputs: | ||
release-version: | ||
type: string | ||
description: The version for release. E.g., "1.2.3" | ||
required: true | ||
next-version: | ||
type: string | ||
description: The version after release. E.g., "2.0.0-SNAPSHOT" | ||
required: true | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
inputs: | ||
release-version: | ||
type: string | ||
description: The version for release. E.g., "1.2.3" | ||
required: true | ||
next-version: | ||
type: string | ||
description: The version after release. E.g., "2.0.0-SNAPSHOT" | ||
required: true | ||
jobs: | ||
release: | ||
uses: ardoco/actions/.github/workflows/maven-manual-release.yml@main | ||
secrets: | ||
# Needs to be a personal access token to push as a certain user; otherwise actions won't be triggered. | ||
PAT: ${{ secrets.SDQ_TOKEN }} | ||
with: | ||
release-version: ${{ github.event.inputs.release-version }} | ||
next-version: ${{ github.event.inputs.next-version }} | ||
release: | ||
uses: ardoco/actions/.github/workflows/maven-manual-release.yml@main | ||
secrets: | ||
# Needs to be a personal access token to push as a certain user; otherwise actions won't be triggered. | ||
PAT: ${{ secrets.SDQ_TOKEN }} | ||
with: | ||
release-version: ${{ github.event.inputs.release-version }} | ||
next-version: ${{ github.event.inputs.next-version }} |
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,14 +1,14 @@ | ||
name: Maven Release | ||
|
||
on: | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
update: | ||
uses: ardoco/actions/.github/workflows/maven-release.yml@main | ||
with: | ||
with-submodules: true | ||
secrets: | ||
# Needs to be a personal access token to push as a certain user; otherwise actions won't be triggered. | ||
PAT: ${{ secrets.SDQ_TOKEN }} | ||
update: | ||
uses: ardoco/actions/.github/workflows/maven-release.yml@main | ||
with: | ||
with-submodules: true | ||
secrets: | ||
# Needs to be a personal access token to push as a certain user; otherwise actions won't be triggered. | ||
PAT: ${{ secrets.SDQ_TOKEN }} |
Oops, something went wrong.