From ef6009fa777bdb7387b01108fbb827baaac2afad Mon Sep 17 00:00:00 2001 From: Kent Lee Date: Fri, 13 Sep 2024 16:27:47 -0400 Subject: [PATCH] adding pr verifier --- .github/workflows/pr-verifier.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/pr-verifier.yml diff --git a/.github/workflows/pr-verifier.yml b/.github/workflows/pr-verifier.yml new file mode 100644 index 0000000..2bf2354 --- /dev/null +++ b/.github/workflows/pr-verifier.yml @@ -0,0 +1,11 @@ +name: PR Verifier +on: + pull_request: + # Required by GitHub Action; this make sure this workflow is fired off every time the PR is updated + types: [opened, edited, synchronize, reopened] + +# https://docs.github.com/en/actions/using-workflows/reusing-workflows#creating-a-reusable-workflow +jobs: + call-shared-workflow: + uses: resy/shared-gha/.github/workflows/pr-verifier.yml@main + secrets: inherit