Files
asterisk/.github/workflows/OnPRCheck.yml
George Joseph 49bf285613 .github: Change branch of reusable workflows to main.
(cherry picked from commit a5d37e5ecb)
2025-03-20 18:18:29 +00:00

15 lines
566 B
YAML

name: PRCheck
run-name: "PR ${{ github.event.number }} Check(${{github.event.action}}) by ${{ github.actor }}"
on:
pull_request_target:
types: [ opened, reopened, synchronize, labeled ]
jobs:
PRCheck:
name: "run-check"
if: ${{ (github.event.action != 'labeled') || (github.event.action == 'labeled' && github.event.label.name == vars.RECHECKPR_LABEL) }}
concurrency:
group: check-${{ github.base_ref }}-${{ github.ref_name }}
cancel-in-progress: true
uses: asterisk/asterisk-ci-actions/.github/workflows/AsteriskPRCheck.yml@main