Skip to content

⬆️ Update image ghcr.io/onedr0p/prowlarr-nightly to v1.11.0.4124 #17

⬆️ Update image ghcr.io/onedr0p/prowlarr-nightly to v1.11.0.4124

⬆️ Update image ghcr.io/onedr0p/prowlarr-nightly to v1.11.0.4124 #17

Workflow file for this run

---
name: Flux diff
on:
pull_request:
branches: ['*']
paths:
- kubernetes/**.yaml
jobs:
flux-diff:
name: Flux diff
runs-on: ubuntu-latest
permissions:
pull-requests: write
strategy:
matrix:
path: ["kubernetes"]
resource: ["helmrelease", "kustomization"]
steps:
- name: Generate token
uses: tibdex/github-app-token@v2
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/[email protected]
id: diff
with:
sources: flux-system
path: "${{ matrix.path }}"
resource: "${{ matrix.resource }}"
- if: ${{ steps.diff.outputs.diff != '' }}
name: Add comment
uses: mshick/[email protected]
with:
repo-token: "${{ steps.generate-token.outputs.token }}"
message-id: "${{ github.event.pull_request.number }}/${{ matrix.path }}/${{ matrix.resource }}"
message-failure: Diff was not successful
message: |
```diff
${{ steps.diff.outputs.diff }}
```