mirror of
https://github.com/asterisk/asterisk.git
synced 2026-04-27 17:23:10 +00:00
The PR workflows now are just stubs that call reusable workflows located in the asterisk-ci-actions repo.
18 lines
482 B
YAML
18 lines
482 B
YAML
name: PRRecheck
|
|
run-name: "PR ${{github.event.number}} Recheck"
|
|
on:
|
|
pull_request_target:
|
|
types: [ labeled ]
|
|
|
|
concurrency:
|
|
group: ${{github.workflow}}-${{github.event.label.name}}-${{github.event.number}}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
PRCheck:
|
|
name: PRCheck
|
|
if: ${{ github.event.label.name == vars.RECHECKPR_LABEL }}
|
|
uses: asterisk/asterisk-ci-actions/.github/workflows/AsteriskRecheckPR.yml@main
|
|
secrets:
|
|
TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|