chore(deps): update peter-evans/create-pull-request action to v7 #1819
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
--- | |
name: flux-local diff | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
diffs: | |
name: Compute diffs | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
cluster_path: | |
- tests/testdata/cluster | |
- tests/testdata/cluster2 | |
- tests/testdata/cluster3 | |
- tests/testdata/cluster4 | |
- tests/testdata/cluster5 | |
- tests/testdata/cluster6 | |
- tests/testdata/cluster7 | |
resource: | |
- helmrelease | |
- kustomization | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Flux CLI | |
uses: fluxcd/flux2/action@v2.3.0 | |
- uses: ./action/diff | |
id: diff | |
with: | |
path: ${{ matrix.cluster_path }} | |
resource: ${{ matrix.resource }} | |
debug: true | |
sources: cluster=tests/testdata/cluster3,flux-system,home-ops-kubernetes | |
api-versions: batch/v1/CronJob | |
- name: PR Comments | |
uses: mshick/add-pr-comment@v2 | |
if: ${{ steps.diff.outputs.diff != '' }} | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
message-id: ${{ github.event.pull_request.number }}/${{ matrix.cluster_path }}/${{ matrix.resource }} | |
message-failure: Unable to post kustomization diff | |
message: | | |
`````diff | |
${{ steps.diff.outputs.diff }} | |
````` |