Skip to content

Commit

Permalink
Merge pull request #508 from efabless/blocking_CI
Browse files Browse the repository at this point in the history
Create block_CI.yaml
  • Loading branch information
jeffdi authored Oct 18, 2023
2 parents 978fa08 + 2c92ebf commit 85464f8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/block_CI.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 85464f8

Please sign in to comment.