mirror of
https://github.com/Magnus167/rustframe.git
synced 2025-08-20 04:19:59 +00:00
add GitHub Actions workflow for PR checks
This commit is contained in:
parent
abfd55915d
commit
699dba4890
29
.github/workflows/pr-checks.yml
vendored
Normal file
29
.github/workflows/pr-checks.yml
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
name: pr-checks
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [main]
|
||||
types: [opened, synchronize, reopened, edited, ready_for_review]
|
||||
|
||||
concurrency:
|
||||
group: pr-checks-${{ github.event.number }}
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
checks: write
|
||||
|
||||
jobs:
|
||||
pr-checks:
|
||||
name: pr-checks
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Run PR checks
|
||||
shell: bash
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
PR_NUMBER: ${{ github.event.number }}
|
||||
run: |
|
||||
python .github/scripts/pr_checks.py $PR_NUMBER
|
Loading…
x
Reference in New Issue
Block a user