mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-02 11:06:31 +00:00
Apparently you can't use `${{ github.event.number }}` in a concurrency
block in a job that calls a reusable workflow. :(
(cherry picked from commit 896a488cd5
)
17 lines
498 B
YAML
17 lines
498 B
YAML
name: PRReCheck
|
|
run-name: "PR ${{ github.event.number }} ${{ github.workflow }} by ${{ github.actor }}"
|
|
on:
|
|
pull_request_target:
|
|
types: [ labeled ]
|
|
|
|
jobs:
|
|
PRReCheck:
|
|
if: ${{ github.event.label.name == vars.RECHECKPR_LABEL }}
|
|
# concurrency:
|
|
# group: recheck-${{ github.event.number }}
|
|
# cancel-in-progress: true
|
|
name: "run-recheck"
|
|
uses: asterisk/asterisk-ci-actions/.github/workflows/AsteriskPRReCheck.yml@main
|
|
secrets:
|
|
TOKEN: ${{ secrets.GITHUB_TOKEN }}
|