Skip to content

fix(helm): update victoria-logs-single ( 0.6.0 → 0.6.3 ) - autoclosed #636

fix(helm): update victoria-logs-single ( 0.6.0 → 0.6.3 ) - autoclosed

fix(helm): update victoria-logs-single ( 0.6.0 → 0.6.3 ) - autoclosed #636

Workflow file for this run

---
# 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:
contents: read
pull-requests: write
strategy:
matrix:
paths: ["kubernetes"]
resources: ["helmrelease", "kustomization"]
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:main
with:
args: >-
diff ${{ matrix.resources }}
--unified 6
--path /github/workspace/pull/${{ matrix.paths }}/flux
--path-orig /github/workspace/default/${{ matrix.paths }}/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.paths }}/${{ matrix.resources }}"
message-failure: Diff was not successful
message-path: diff.md