chore(mirror): update ghcr.io/juniorjpdj/containers/archlinux-syncrepo docker tag to v1.0.0-r19 #401
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: Check for version bumps in PR | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
check_changes_and_versions: | |
name: Check for changes and version bumps | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.MATRIX }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: '0' | |
- name: Verify changes and versions | |
run: | | |
GIT_DIFF_BASE='${{ github.event.pull_request.base.sha }}' | |
GIT_DIFF_HEAD='${{ github.event.pull_request.head.sha }}' | |
./scripts/ci_version_changed_check.sh "$GIT_DIFF_BASE" "$GIT_DIFF_HEAD" |