chore(deps): bump the dependencies group across 1 directory with 5 updates #181
Workflow file for this run
This file contains hidden or 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: prevent file change 4 | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - .github/**/*.yaml | |
| jobs: | |
| detect: | |
| if: ${{ github.event.pull_request.head.repo.fork }} # is Fork | |
| permissions: | |
| contents: read | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 3 | |
| steps: | |
| - name: Run step if any file(s) in the .github folder change | |
| run: | | |
| echo "One or more files has changed." | |
| exit 1 |