This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
feat(container): update ghcr.io/onedr0p/readarr-nightly docker tag to 0.2.4.1957 #3029
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: Helm Release Differ | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "cluster/**.yaml" | |
env: | |
# Currently no way to detect automatically | |
DEFAULT_BRANCH: main | |
BOT_USERNAME: "pinky-bot[bot]" | |
jobs: | |
detect-file-changes: | |
name: Detect File Changes | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
list-files: json | |
filters: | | |
yaml: | |
- added|modified: "**/helm-release.yaml" | |
outputs: | |
yaml_files: ${{ steps.filter.outputs.yaml_files }} | |
helm-release-differ: | |
name: Helm Release Differ | |
runs-on: ubuntu-latest | |
needs: detect-file-changes | |
strategy: | |
matrix: | |
file: ${{ fromJSON(needs.detect-file-changes.outputs.yaml_files) }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
- 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: Checkout default branch | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
with: | |
ref: "${{ env.DEFAULT_BRANCH }}" | |
path: default | |
- name: Install Helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.6.3 | |
- name: Helm Release Differ | |
id: diff | |
run: | | |
diff="$(.github/scripts/helm-release-differ.sh --source-file default/${{ matrix.file }} --target-file ${{ matrix.file }} --remove-common-labels)" | |
diff="${diff//'%'/'%25'}" | |
diff="${diff//$'\n'/'%0A'}" | |
diff="${diff//$'\r'/'%0D'}" | |
echo "::set-output name=diff::$(echo ${diff})" | |
- name: Find Comment | |
uses: peter-evans/find-comment@v2 | |
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 | |
uses: peter-evans/create-or-update-comment@v3 | |
with: | |
token: "${{ steps.generate-token.outputs.token }}" | |
comment-id: "${{ steps.find-comment.outputs.comment-id }}" | |
issue-number: "${{ github.event.pull_request.number }}" | |
body: "${{ steps.diff.outputs.diff }}" | |
edit-mode: replace |