Skip to content

chore(deps): update ghcr.io/cloudnative-pg/postgresql docker tag to v14.10-15 #239

chore(deps): update ghcr.io/cloudnative-pg/postgresql docker tag to v14.10-15

chore(deps): update ghcr.io/cloudnative-pg/postgresql docker tag to v14.10-15 #239

Workflow file for this run

---
name: "Flux Diff"
on:
pull_request:
branches: ["main"]
paths: ["**.yaml"]
jobs:
flux-diff:
name: Flux Diff
runs-on: ubuntu-latest
strategy:
matrix:
path: ["kubernetes"]
resource: ["helmrelease", "kustomization"]
steps:
- name: Generate Token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0
id: generate-token
with:
app_id: "${{ secrets.BOT_APP_ID }}"
private_key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
- name: Diff Resources
uses: allenporter/flux-local/action/diff@main
id: diff
with:
path: ${{ matrix.path }}
resource: ${{ matrix.resource }}
- name: Add comment
uses: mshick/add-pr-comment@7c0890544fb33b0bdd2e59467fbacb62e028a096 # v2
if: ${{ steps.diff.outputs.diff != '' }}
with:
repo-token: ${{ steps.generate-token.outputs.token }}
message-id: ${{ matrix.path }}/${{ matrix.resource }}
message-failure: Diff was not successful
message: |
```diff
${{ steps.diff.outputs.diff }}
```