mirror of
https://github.com/auricom/home-cluster.git
synced 2025-12-25 16:44:39 +01:00
| datasource | package | from | to | | ----------- | ------------------------ | ------- | ------- | | github-tags | tj-actions/changed-files | v35.9.0 | v35.9.1 |
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@b62528385c34dbc9f38e5f4225ac829252d1ea92 # v1.8.0
|
|
id: generate-token
|
|
with:
|
|
app_id: "${{ secrets.BOT_APP_ID }}"
|
|
private_key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
|
with:
|
|
token: "${{ steps.generate-token.outputs.token }}"
|
|
|
|
- name: Get changed files
|
|
id: changed-files
|
|
uses: tj-actions/changed-files@4a0aac0d19aa2838c6741fdf95a5276390418dc2 # v35.9.1
|
|
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@b62528385c34dbc9f38e5f4225ac829252d1ea92 # v1.8.0
|
|
id: generate-token
|
|
with:
|
|
app_id: "${{ secrets.BOT_APP_ID }}"
|
|
private_key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
|
with:
|
|
token: "${{ steps.generate-token.outputs.token }}"
|
|
|
|
- name: Checkout default branch
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
|
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@3383acd359705b10cb1eeef05c0e88c056ea4666 # v3.0.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
|