mirror of
https://github.com/auricom/home-cluster.git
synced 2025-10-03 01:00:54 +02:00

| datasource | package | from | to | | ----------- | ------------------------ | ------- | ------- | | github-tags | tj-actions/changed-files | v40.0.2 | v40.1.0 |
110 lines
3.6 KiB
YAML
110 lines
3.6 KiB
YAML
---
|
|
name: "HelmRelease Diff"
|
|
|
|
on:
|
|
pull_request:
|
|
branches: ["main"]
|
|
paths: ["kubernetes/**/helmrelease.yaml"]
|
|
|
|
env:
|
|
BOT_USERNAME: feisar-bot[bot]
|
|
KUBERNETES_DIR: kubernetes/
|
|
|
|
jobs:
|
|
changed-files:
|
|
name: Detect File Changes
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
|
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: Checkout
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
with:
|
|
token: "${{ steps.generate-token.outputs.token }}"
|
|
|
|
- name: Get changed files
|
|
id: changed-files
|
|
uses: tj-actions/changed-files@18c8a4ecebe93d32ed8a88e1d0c098f5f68c221b # v40.1.0
|
|
with:
|
|
json: true
|
|
files: |
|
|
kubernetes/**/helmrelease.yaml
|
|
|
|
- id: set-matrix
|
|
run: echo "matrix={\"file\":${{ steps.changed-files.outputs.all_changed_files }}}" >> "${GITHUB_OUTPUT}"
|
|
|
|
diff:
|
|
name: Diff on Helm Releases
|
|
runs-on: ubuntu-latest
|
|
needs: [changed-files]
|
|
strategy:
|
|
matrix: ${{ fromJSON(needs.changed-files.outputs.matrix) }}
|
|
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: Checkout
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
with:
|
|
token: "${{ steps.generate-token.outputs.token }}"
|
|
|
|
- name: Checkout default branch
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
with:
|
|
token: "${{ steps.generate-token.outputs.token }}"
|
|
ref: "${{ github.event.repository.default_branch }}"
|
|
path: default
|
|
|
|
- name: Setup Homebrew
|
|
uses: Homebrew/actions/setup-homebrew@master
|
|
|
|
- name: Setup Tools
|
|
run: |
|
|
brew install helm homeport/tap/dyff kustomize yq
|
|
|
|
- name: Diff
|
|
id: diff
|
|
run: |
|
|
diff=$(npx zx ./.github/scripts/helmReleaseDiff.mjs \
|
|
--current-release "default/${{ matrix.file }}" \
|
|
--incoming-release "${{ matrix.file }}" \
|
|
--kubernetes-dir ${{ env.KUBERNETES_DIR }})
|
|
echo "diff<<EOF" >> "${GITHUB_OUTPUT}"
|
|
echo "${diff}" >> "${GITHUB_OUTPUT}"
|
|
echo "EOF" >> "${GITHUB_OUTPUT}"
|
|
|
|
- name: Find Comment
|
|
if: ${{ always() && steps.diff.outputs.diff != '' }}
|
|
uses: peter-evans/find-comment@a54c31d7fa095754bfef525c0c8e5e5674c4b4b1 # v2.4.0
|
|
id: find-comment
|
|
with:
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
comment-author: ${{ env.BOT_USERNAME }}
|
|
body-includes: ${{ matrix.file }}
|
|
|
|
- name: Create or update comment
|
|
if: ${{ always() && steps.diff.outputs.diff != '' }}
|
|
uses: peter-evans/create-or-update-comment@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3.1.0
|
|
with:
|
|
token: ${{ steps.generate-token.outputs.token }}
|
|
comment-id: ${{ steps.find-comment.outputs.comment-id }}
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
body: |
|
|
Helm Release: `${{ matrix.file }}`
|
|
|
|
```
|
|
${{ steps.diff.outputs.diff }}
|
|
```
|
|
edit-mode: replace
|