chore(deps): update camunda-platform-alpha (patch) #646
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
# Basic test for Alpha Camunda 8 Helm charts. | |
name: "Test - Alpha" | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/test-integration-template.yaml' | |
- '.github/workflows/test-version-alpha.yaml' | |
- 'charts/camunda-platform-alpha/**' | |
workflow_dispatch: { } | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
CAMUNDA_DISTRO_TEST_DELETE_NAMESPACE: ${{ !secrets.ACTIONS_STEP_DEBUG }} | |
GITHUB_PR_NUMBER: ${{ github.event.pull_request.number }} | |
GITHUB_PR_HEAD_SHA: ${{ github.event.pull_request.head.sha }} | |
GITHUB_WORKFLOW_RUN_ID: ${{ github.run_id }} | |
KUBECONFIG: .github/config/kubeconfig | |
permissions: | |
contents: read | |
jobs: | |
validation: | |
name: Validation - Camunda Alpha | |
uses: ./.github/workflows/chart-validate-template.yaml | |
with: | |
identifier: "${{ github.event.pull_request.number }}-vald-alpha" | |
camunda-helm-dir: "camunda-platform-alpha" | |
camunda-helm-git-ref: "${{ github.event.pull_request.head.sha }}" | |
unit: | |
name: Unit Test - Camunda Alpha | |
uses: ./.github/workflows/test-unit-template.yml | |
with: | |
identifier: "${{ github.event.pull_request.number }}-unit-alpha" | |
camunda-helm-dir: "camunda-platform-alpha" | |
camunda-helm-git-ref: "${{ github.event.pull_request.head.sha }}" | |
integration: | |
name: Integration Test - Camunda Alpha | |
needs: [validation, unit] | |
permissions: | |
contents: read | |
id-token: write | |
deployments: write | |
secrets: inherit | |
uses: ./.github/workflows/test-integration-template.yaml | |
with: | |
identifier: "${{ github.event.pull_request.number }}-intg-alpha" | |
deployment-ttl: "${{ contains(github.event.pull_request.labels.*.name, 'test-persistent') && '1w' || '' }}" | |
platforms: "gke,rosa" | |
flows: "install,upgrade" | |
camunda-helm-repo: "oci://ghcr.io/camunda/helm/camunda-platform" | |
camunda-helm-dir: "camunda-platform-alpha" | |
camunda-helm-git-ref: "${{ github.event.pull_request.head.sha }}" | |
# We need to set the var here as the Alpha is stored on the OCI Helm registry and uses different versioning. | |
camunda-helm-upgrade-version: "0.0.0-snapshot-alpha" | |
camunda-helm-post-render: false | |
caller-git-ref: "${{ github.event.pull_request.head.sha }}" |