chore(container): update image ghcr.io/onedr0p/readarr-develop ( dfee716 → 75449da ) #2564
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 | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
changed-files: | |
name: Get Changed Files | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.changed-files.outputs.all_changed_and_modified_files }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v45 | |
with: | |
files: kubernetes/** | |
dir_names: true | |
dir_names_max_depth: 2 | |
json: true | |
quotepath: false | |
escape_json: false | |
- name: List all changed files | |
run: echo "${{ steps.changed-files.outputs.all_changed_and_modified_files }}" | |
flux-diff: | |
name: Flux Diff | |
runs-on: ubuntu-latest | |
needs: | |
- changed-files | |
permissions: | |
pull-requests: write | |
if: ${{ needs.changed-files.outputs.matrix != '[]' }} | |
strategy: | |
matrix: | |
paths: ${{ fromJSON(needs.changed-files.outputs.matrix) }} | |
resources: | |
- helmrelease | |
- kustomization | |
steps: | |
- name: Generate Token | |
uses: actions/create-github-app-token@v1 | |
if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} | |
id: app-token | |
with: | |
app-id: ${{ secrets.CARPENIKE_APP_ID }} | |
private-key: ${{ secrets.CARPENIKE_APP_PRIVATE_KEY }} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Flux | |
uses: fluxcd/flux2/action@main | |
with: | |
version: "latest" | |
- name: Setup yq | |
uses: frenck/action-setup-yq@v1 | |
- name: Diff Resources | |
uses: allenporter/flux-local/action/[email protected] | |
id: diff | |
with: | |
sources: k8s-gitops-kubernetes | |
path: "${{ matrix.paths }}" | |
resource: "${{ matrix.resources }}" | |
- name: Add comment | |
if: ${{ steps.diff.outputs.diff != '' && github.event.pull_request.head.repo.full_name == github.repository }} | |
uses: mshick/[email protected] | |
with: | |
repo-token: "${{ steps.app-token.outputs.token }}" | |
message-id: "${{ github.event.pull_request.number }}/${{ matrix.paths }}/${{ matrix.resources }}" | |
message-failure: Diff was not successful | |
message: | | |
```diff | |
${{ steps.diff.outputs.diff }} | |
``` | |
flux-diff-success: | |
needs: | |
- flux-diff | |
if: ${{ always() }} | |
name: Flux Diff successful | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check matrix status | |
if: >- | |
${{ | |
contains(needs.*.result, 'failure') | |
|| contains(needs.*.result, 'cancelled') | |
}} | |
run: exit 1 |