Merge pull request #18 from Magnus167/testing_pr

Testing workflow
This commit is contained in:
Palash Tyagi 2025-04-24 19:03:27 +01:00 committed by GitHub
commit 3e2e631ea1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,35 +1,34 @@
name: pr-checks
# name: pr-checks
on:
pull_request:
branches: [main]
types:
- opened
# - synchronize
# disable to save resources
- reopened
- edited
- ready_for_review
# on:
# pull_request:
# branches: [pr_checks_disabled_for_now]
# types:
# - opened
# # - synchronize
# - reopened
# - edited
# - ready_for_review
concurrency:
group: pr-checks-${{ github.event.number }}
# concurrency:
# group: pr-checks-${{ github.event.number }}
permissions:
contents: read
pull-requests: read
checks: write
# permissions:
# contents: read
# pull-requests: read
# checks: write
jobs:
pr-checks:
name: pr-checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# 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
# - 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