From cdef1b3ebf8ef719f13f096e1bb9e4d53265fd70 Mon Sep 17 00:00:00 2001 From: Richard Tibbles Date: Thu, 30 Apr 2026 18:02:17 -0700 Subject: [PATCH] Add shared pull-request-target caller workflow --- .github/workflows/call-pull-request-target.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/call-pull-request-target.yml diff --git a/.github/workflows/call-pull-request-target.yml b/.github/workflows/call-pull-request-target.yml new file mode 100644 index 00000000..e499bcdd --- /dev/null +++ b/.github/workflows/call-pull-request-target.yml @@ -0,0 +1,11 @@ +name: Handle pull request events +on: + pull_request_target: + types: [opened, review_requested, labeled] +jobs: + call-workflow: + name: Call shared workflow + uses: learningequality/.github/.github/workflows/pull-request-target.yml@main + secrets: + LE_BOT_APP_ID: ${{ secrets.LE_BOT_APP_ID }} + LE_BOT_PRIVATE_KEY: ${{ secrets.LE_BOT_PRIVATE_KEY }}