.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.
This commit is contained in:
George Joseph
2024-06-25 07:07:39 -06:00
parent a800a20308
commit 0527ae4166
10 changed files with 138 additions and 649 deletions

18
.github/workflows/OnPRRecheck.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
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 }}