Merge pull request #17 from Magnus167/pr_checks_wkflow

Refactor PR checks workflow to skip sync events
This commit is contained in:
Palash Tyagi 2025-04-24 18:17:06 +01:00 committed by GitHub
commit 22319f68de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,13 @@ name: pr-checks
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened, edited, ready_for_review]
types:
- opened
# - synchronize
# disable to save resources
- reopened
- edited
- ready_for_review
concurrency:
group: pr-checks-${{ github.event.number }}
@ -26,4 +32,4 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ github.event.number }}
run: |
python .github/scripts/pr_checks.py $PR_NUMBER
python .github/scripts/pr_checks.py $PR_NUMBER