feat(container): update kubernetes group ( v1.31.5 → v1.32.1 ) (minor) #1261
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: ["kubernetes/**"] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
flux-diff: | |
name: Flux Diff | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
strategy: | |
matrix: | |
resources: ["helmrelease", "kustomization"] | |
max-parallel: 4 | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
path: pull | |
- name: Checkout default branch | |
uses: actions/checkout@v4 | |
with: | |
ref: "${{ github.event.repository.default_branch }}" | |
path: default | |
- name: Diff resources | |
uses: docker://ghcr.io/allenporter/flux-local:v7.0.0@sha256:abf237e31d20de26f8a4b08e588cc927cb0a9f0ecf90d04bada00f393b919354 | |
with: | |
args: >- | |
diff ${{ matrix.resources }} | |
--unified 6 | |
--path /github/workspace/pull/kubernetes/flux | |
--path-orig /github/workspace/default/kubernetes/flux | |
--strip-attrs "helm.sh/chart,checksum/config,app.kubernetes.io/version,chart" | |
--limit-bytes 10000 | |
--all-namespaces | |
--sources home-kubernetes | |
--output-file diff.patch | |
- name: Generate diff markdown | |
id: diff-md | |
run: | | |
echo '```diff' > diff.md | |
cat diff.patch >> diff.md | |
echo '```' >> diff.md | |
echo "size=$(stat -c%s diff.patch)" >> "$GITHUB_OUTPUT" | |
- name: Add comment | |
if: ${{ steps.diff-md.outputs.size > 0 }} | |
uses: mshick/add-pr-comment@v2 | |
with: | |
message-id: "${{ github.event.pull_request.number }}/${{ matrix.resources }}" | |
message-failure: Diff was not successful | |
message-path: diff.md | |
# Summarize matrix https://github.community/t/status-check-for-a-matrix-jobs/127354/7 | |
flux-diff-success: | |
if: ${{ always() }} | |
needs: ["flux-diff"] | |
name: Flux Diff Successful | |
runs-on: ubuntu-latest | |
steps: | |
- if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }} | |
name: Check matrix status | |
run: exit 1 |