🤖 Update chart kube-prometheus-stack to 69.2.2 #429
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
--- | |
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: 'Flux Diff' | |
on: | |
pull_request: | |
branches: ['main'] | |
paths: ['cluster/kubernetes/**'] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
cancel-in-progress: true | |
permissions: | |
pull-requests: write | |
jobs: | |
flux-diff: | |
name: Flux Diff | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
resource: | |
- helmrelease | |
- kustomization | |
steps: | |
- name: Setup Flux CLI | |
uses: fluxcd/flux2/[email protected] | |
- name: Run diff | |
uses: allenporter/flux-local/action/[email protected] | |
id: diff | |
with: | |
live-branch: main | |
path: cluster/kubernetes/flux/main | |
resource: ${{ matrix.resource }} | |
debug: true | |
- name: PR Comments | |
uses: mshick/add-pr-comment@v2 | |
if: ${{ steps.diff.outputs.diff != '' }} | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
message-id: ${{ github.event.pull_request.number }}/${{ matrix.resource }} | |
message-failure: Unable to post kustomization diff | |
message: | | |
```diff | |
${{ steps.diff.outputs.diff }} | |
``` |