From 5ac6475c18633cd565c97eca95250b59d55a5f2e Mon Sep 17 00:00:00 2001 From: Martin Yeo Date: Mon, 24 Mar 2025 16:06:54 +0000 Subject: [PATCH] Add ci-template-check-pr.yml. --- .github/workflows/ci-template-check-pr.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ci-template-check-pr.yml diff --git a/.github/workflows/ci-template-check-pr.yml b/.github/workflows/ci-template-check-pr.yml new file mode 100644 index 0000000..87faec4 --- /dev/null +++ b/.github/workflows/ci-template-check-pr.yml @@ -0,0 +1,18 @@ +# Checks if a PR makes any changes that ought to be shared via templating. +# See .github/workflows/ci-template-check.yml for more details. +# Separated from ci-template-check.yml for consistency with the other calling +# repos. + +name: ci-template-check-pr + +on: + pull_request_target: + branches: + - main + +jobs: + prompt-share: + uses: ./.github/workflows/ci-template-check.yml + secrets: inherit + with: + pr_number: ${{ github.event.pull_request.number }}