chore(deps): update helm release k10 to v7.0.12 #1483
Workflow file for this run
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: Flux differ | |
on: | |
pull_request: | |
branches: ['*'] | |
paths: ['cluster/**.yaml'] | |
jobs: | |
flux-differ: | |
name: Flux differ | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
strategy: | |
matrix: | |
path: ["cluster"] | |
resource: ["helmrelease", "kustomization"] | |
steps: | |
- name: Generate token | |
uses: actions/create-github-app-token@v1 | |
id: generate-token | |
with: | |
app-id: "${{ secrets.BOT_APP_ID }}" | |
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}" | |
- name: Setup Flux CLI | |
uses: fluxcd/flux2/[email protected] | |
- name: Diff resources | |
uses: allenporter/flux-local/action/[email protected] | |
id: diff | |
with: | |
sources: flux-system | |
path: "${{ matrix.path }}" | |
resource: "${{ matrix.resource }}" | |
- if: ${{ steps.diff.outputs.diff != '' }} | |
name: Add comment | |
uses: mshick/[email protected] | |
with: | |
repo-token: "${{ steps.generate-token.outputs.token }}" | |
message-id: "${{ github.event.pull_request.number }}/${{ matrix.path }}/${{ matrix.resource }}" | |
message-failure: Diff was not successful | |
message: | | |
```diff | |
${{ steps.diff.outputs.diff }} | |
``` |