feat(container): update docker.io/stonith404/pocket-id ( v0.21.0 → v0.23.0 ) #1185
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: ["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: Mise en place | |
uses: jdx/mise-action@v2 | |
with: | |
mise_toml: | | |
[tools] | |
python = "3.12" | |
"aqua:astral-sh/uv" = "latest" | |
"aqua:fluxcd/flux2" = "latest" | |
"aqua:helm/helm" = "latest" | |
"aqua:kubernetes-sigs/kustomize" = "latest" | |
"pipx:flux-local" = "latest" | |
- name: Diff resources | |
shell: bash | |
run: | | |
flux-local 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 |