-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
8ee2412
commit 211125a
Showing
18 changed files
with
56 additions
and
55 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,9 @@ name: Docker build and publish | |
|
||
on: | ||
workflow_call: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-docker | ||
cancel-in-progress: true | ||
inputs: | ||
docker-context: | ||
description: "The docker context." | ||
|
@@ -71,9 +74,6 @@ jobs: | |
docker-build: | ||
name: Docker build | ||
runs-on: ubuntu-22.04 | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-docker | ||
cancel-in-progress: true | ||
steps: | ||
- name: Check out repository | ||
uses: bakdata/ci-templates/actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,9 @@ name: Helm GKE Deploy | |
|
||
on: | ||
workflow_call: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-helm-deploy | ||
cancel-in-progress: true | ||
inputs: | ||
release-name: | ||
description: "Helm release name" | ||
|
@@ -74,9 +77,6 @@ jobs: | |
deploy: | ||
name: Deploy | ||
runs-on: ubuntu-22.04 | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-helm-deploy | ||
cancel-in-progress: true | ||
steps: | ||
- name: Checkout repository | ||
uses: bakdata/ci-templates/actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,9 @@ name: Helm GKE Destroy | |
|
||
on: | ||
workflow_call: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-helm-destroy | ||
cancel-in-progress: true | ||
inputs: | ||
release-name: | ||
description: "Helm release name" | ||
|
@@ -45,9 +48,6 @@ jobs: | |
destroy: | ||
name: Destroy | ||
runs-on: ubuntu-22.04 | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-helm-destroy | ||
cancel-in-progress: true | ||
steps: | ||
- name: Checkout repository | ||
uses: bakdata/ci-templates/actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,9 @@ name: Helm Multi Release | |
|
||
on: | ||
workflow_call: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-helm-multi-release | ||
cancel-in-progress: true | ||
inputs: | ||
charts-path: | ||
description: "The directory containing the Helm chart(s)." | ||
|
@@ -47,9 +50,6 @@ on: | |
jobs: | ||
helm-lint: | ||
runs-on: ubuntu-22.04 | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-helm-multi-release | ||
cancel-in-progress: true | ||
steps: | ||
- name: Lint Helm chart | ||
uses: bakdata/ci-templates/actions/[email protected] | ||
|
@@ -136,7 +136,7 @@ jobs: | |
|
||
publish-artifacts: | ||
runs-on: ubuntu-22.04 | ||
needs: [package-new-artifacts,update-version] | ||
needs: [package-new-artifacts, update-version] | ||
env: | ||
artifact-dir: "${{ inputs.artifact-dir }}" | ||
charts-path: "${{ inputs.artifact-dir }}" | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,9 @@ name: Reusable workflow for packaging and publishing Helm charts on GitHub pages | |
|
||
on: | ||
workflow_call: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-helm-release | ||
cancel-in-progress: true | ||
inputs: | ||
page-url: | ||
description: "URL to the GitHub pages website of the repository." | ||
|
@@ -65,9 +68,6 @@ on: | |
jobs: | ||
helm-lint: | ||
runs-on: ubuntu-22.04 | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-helm-release | ||
cancel-in-progress: true | ||
steps: | ||
- name: Lint Helm chart | ||
uses: bakdata/ci-templates/actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -9,6 +9,9 @@ on: | |
required: false | ||
type: boolean | ||
default: false | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-java-gradle-base | ||
cancel-in-progress: true | ||
gradle-cache: | ||
description: "Whether Gradle caching is enabled or not. (Default is true)" | ||
required: false | ||
|
@@ -55,9 +58,6 @@ jobs: | |
build: | ||
name: Build | ||
runs-on: ubuntu-22.04 | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-java-gradle-base | ||
cancel-in-progress: true | ||
steps: | ||
- name: Build | ||
uses: bakdata/ci-templates/actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,9 @@ name: Java Gradle Docker | |
|
||
on: | ||
workflow_call: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-java-gradle-docker | ||
cancel-in-progress: true | ||
inputs: | ||
docker-publisher: | ||
description: "Publisher to prefix Docker image." | ||
|
@@ -70,9 +73,6 @@ on: | |
|
||
jobs: | ||
build-and-test: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-java-gradle-docker | ||
cancel-in-progress: true | ||
name: Build, Test and Assess code quality | ||
uses: bakdata/ci-templates/.github/workflows/[email protected] | ||
with: | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,9 @@ name: Java Gradle library | |
|
||
on: | ||
workflow_call: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-java-gradle-lib | ||
cancel-in-progress: true | ||
inputs: | ||
java-distribution: | ||
description: "Java distribution to be installed. (Default is microsoft)" | ||
|
@@ -60,9 +63,6 @@ on: | |
|
||
jobs: | ||
build-and-test: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-java-gradle-lib | ||
cancel-in-progress: true | ||
name: Build, Test and Assess code quality | ||
uses: bakdata/ci-templates/.github/workflows/[email protected] | ||
with: | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,9 @@ name: Java Gradle plugin | |
|
||
on: | ||
workflow_call: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-java-gradle-plugin | ||
cancel-in-progress: true | ||
inputs: | ||
java-distribution: | ||
description: "Java distribution to be installed. (Default is microsoft)" | ||
|
@@ -66,9 +69,6 @@ on: | |
|
||
jobs: | ||
build-and-test: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-java-gradle-plugin | ||
cancel-in-progress: true | ||
name: Build, Test and Assess code quality | ||
uses: bakdata/ci-templates/.github/workflows/[email protected] | ||
with: | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,9 @@ name: Kustomize GKE Deploy | |
|
||
on: | ||
workflow_call: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-kustomize-gke-deploy | ||
cancel-in-progress: true | ||
inputs: | ||
kustomization-path: | ||
description: "Path to the root directory of the kustomization" | ||
|
@@ -46,9 +49,6 @@ jobs: | |
deploy: | ||
name: Deploy | ||
runs-on: ubuntu-22.04 | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-kustomize-gke-deploy | ||
cancel-in-progress: true | ||
steps: | ||
- name: Checkout repository | ||
uses: bakdata/ci-templates/actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,9 @@ name: Kustomize GKE Destroy | |
|
||
on: | ||
workflow_call: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-kustomize-gke-destroy | ||
cancel-in-progress: true | ||
inputs: | ||
kustomization-path: | ||
description: "Path to the root directory of the kustomization" | ||
|
@@ -41,9 +44,6 @@ jobs: | |
destroy: | ||
name: Destroy | ||
runs-on: ubuntu-22.04 | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-kustomize-gke-destroy | ||
cancel-in-progress: true | ||
steps: | ||
- name: Checkout repository | ||
uses: bakdata/ci-templates/actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,9 @@ name: Reusable workflow for publishing to PyPI | |
|
||
on: | ||
workflow_call: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-python-poetry-publish-pypi | ||
cancel-in-progress: true | ||
inputs: | ||
publish-to-test: | ||
description: "If set to false, the packages are published to PyPI. (Default is true)" | ||
|
@@ -32,9 +35,6 @@ jobs: | |
publish: | ||
name: Publish | ||
runs-on: ubuntu-22.04 | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-python-poetry-publish-pypi | ||
cancel-in-progress: true | ||
steps: | ||
- name: Check out repository | ||
uses: bakdata/ci-templates/actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,9 @@ name: Reusable workflow for releasing tag versions | |
|
||
on: | ||
workflow_call: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-release-version | ||
cancel-in-progress: true | ||
inputs: | ||
version-configs-dir: | ||
description: "The Path to the directory containing the file where the versioning is defined and `.bumpversion.cfg` file." | ||
|
@@ -34,9 +37,6 @@ on: | |
jobs: | ||
bump_and_release: | ||
runs-on: ubuntu-latest | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-release-version | ||
cancel-in-progress: true | ||
steps: | ||
- name: Check out default branch | ||
uses: bakdata/ci-templates/actions/[email protected] | ||
|
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