chore(deps): update helm release keycloak to v22 - abandoned #825
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
name: PR Update | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
permissions: | |
# read on both needed for changes detection | |
pull-requests: read | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
changes: | |
# Detect which files have been changed on this PR's full history | |
uses: SwanseaUniversityMedical/workflows/.github/workflows/changes-pr.yaml@v5.1.2 | |
with: | |
slack-channel: ${{ vars.SLACK_CHANNEL }} | |
filters: | | |
chart: | |
- './.github/workflows/on-pr-update.yaml' | |
- 'charts/teleport/**' | |
secrets: | |
slack-token: ${{ secrets.SLACK_TOKEN }} | |
chart: | |
# Build the chart and push it as :pr-42 and :pr-42-fe45b3h | |
needs: changes | |
if: fromJSON(needs.changes.outputs.changes).chart == 'true' | |
uses: SwanseaUniversityMedical/workflows/.github/workflows/on-pr-update-chart.yaml@v5.1.2 | |
with: | |
job-name: chart | |
chart: charts/teleport | |
chart-registry: ${{ vars.HARBOR_REGISTRY }} | |
chart-registry-user: ${{ vars.HARBOR_USER }} | |
chart-registry-project: ${{ vars.HARBOR_PROJECT }} | |
chart-registry-repo: ${{ vars.HARBOR_REPO }} | |
cosign-public-key: ${{ vars.COSIGN_PUBLIC_KEY }} | |
slack-channel: ${{ vars.SLACK_CHANNEL }} | |
test-command: | | |
helm template $CHART --values charts/teleport/values.yaml | |
secrets: | |
cosign-private-key: ${{ secrets.COSIGN_PRIVATE_KEY }} | |
cosign-password: ${{ secrets.COSIGN_PASSWORD }} | |
chart-registry-token: ${{ secrets.HARBOR_TOKEN }} | |
slack-token: ${{ secrets.SLACK_TOKEN }} |