From ee1a9eaee60766999f987ba26cc56f739c9f0359 Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Sun, 1 Mar 2026 15:41:49 +0000 Subject: [PATCH 1/2] Initial plan From 2dc69d18d5dcc00cc4bb142d9f7d0bceffb62da3 Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Sun, 1 Mar 2026 15:43:28 +0000 Subject: [PATCH 2/2] fix: Use pull_request_target in event name checks Co-authored-by: borchero <22455425+borchero@users.noreply.github.com> --- .github/workflows/chore.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/chore.yml b/.github/workflows/chore.yml index 59d65c9..bee031b 100644 --- a/.github/workflows/chore.yml +++ b/.github/workflows/chore.yml @@ -13,7 +13,7 @@ concurrency: jobs: check-pr-title: name: Check PR Title - if: github.event_name == 'pull_request' + if: github.event_name == 'pull_request_target' runs-on: ubuntu-latest permissions: contents: read @@ -53,16 +53,16 @@ jobs: delete: true release-drafter: - name: ${{ github.event_name == 'pull_request' && 'Assign Labels' || 'Draft Release' }} + name: ${{ github.event_name == 'pull_request_target' && 'Assign Labels' || 'Draft Release' }} runs-on: ubuntu-latest permissions: contents: write pull-requests: write steps: - - name: ${{ github.event_name == 'pull_request' && 'Assign labels' || 'Update release draft' }} + - name: ${{ github.event_name == 'pull_request_target' && 'Assign labels' || 'Update release draft' }} uses: release-drafter/release-drafter@6db134d15f3909ccc9eefd369f02bd1e9cffdf97 # v6.2.0 with: - disable-releaser: ${{ github.event_name == 'pull_request' }} + disable-releaser: ${{ github.event_name == 'pull_request_target' }} disable-autolabeler: ${{ github.event_name == 'push' }} env: GITHUB_TOKEN: ${{ github.token }}