π Set canonincal dependencies + initial version and CHANGELOG #11
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 π€π° | |
on: | |
pull_request: | |
jobs: | |
check-for-changes: | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v45 | |
with: | |
files: | | |
.github/workflows/match_target_repository.yaml | |
.github/workflows/π«π€π°.yaml | |
- name: Check for workflow changes | |
id: workflow-changes | |
env: | |
CHANGED_FILES: ${{ steps.changed-files.outputs.any_changed }} | |
run: | | |
if [ "${CHANGED_FILES}" = "true" ]; then | |
exit 1 | |
fi |