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 }}