[WIP] Trigger mirror update test #106
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: Mirror update notification | |
on: | |
pull_request: | |
# branches: | |
# - master | |
paths: | |
- backend_modules/libvirt/base/main.tf | |
jobs: | |
check-image-urls: | |
name: Check updated image URLs | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
- name: Find modified image URLs | |
run: | | |
echo "DIFF<<EOF" >> $GITHUB_ENV | |
git diff -p -U0 --no-color --diff-filter=M -G"\{var\.mirror\}" \ | |
${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }} \ | |
-- backend_modules/libvirt/base/main.tf | \ | |
grep "^[+-] " | sed 's/^[+-]\s*\([^ ]*\).*$/ - `\1`/' | uniq >> $GITHUB_ENV | |
echo "EOF" >> $GITHUB_ENV | |
- name: Comment on the pull request | |
if: env.DIFF | |
uses: actions-cool/maintain-one-comment@v3 | |
with: | |
body: | | |
This pull request modifies the URLs of the following images: | |
${{ env.DIFF }} | |
Please consider updating the CI and BV mirror configurations accordingly. |