Files
asterisk/.github/workflows/OnPRCherryPickTest.yml
George Joseph 0527ae4166 .github: Replace PR workflows with stubs that call reusables
The PR workflows now are just stubs that call reusable
workflows located in the asterisk-ci-actions repo.
2024-06-27 09:36:20 -06:00

18 lines
516 B
YAML

name: PRCherryPickTest
run-name: "PR ${{github.event.number}} CherryPickTest"
on:
pull_request_target:
types: [ labeled ]
concurrency:
group: ${{github.workflow}}-${{github.event.label.name}}-${{github.event.number}}
cancel-in-progress: true
jobs:
CherryPickTest:
name: CherryPickTest
if: ${{ github.event.label.name == vars.CHERRY_PICK_TEST_LABEL }}
uses: asterisk/asterisk-ci-actions/.github/workflows/AsteriskCherryPickTest.yml@main
secrets:
TOKEN: ${{ secrets.GITHUB_TOKEN }}