Create block_CI.yaml

This commit is contained in:
Marwan Abbas 2023-10-12 15:11:03 +03:00 committed by GitHub
parent 978fa08023
commit 2c92ebfabb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 27 additions and 0 deletions

27
.github/workflows/block_CI.yaml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Block PR
on:
pull_request:
branches:
- main
jobs:
changed_files:
runs-on: ubuntu-latest
name: Test changed-files
permissions:
pull-requests: read
steps:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v39
- name: List all changed files
run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
echo "$file was changed"
if [[ "$file" == *"verilog/rtl/"* || "$file" == *"mag/"* || "$file" == *"gds/"* ]]; then
exit 1
fi
done