From 4473ed2e73fed47cd2fa42b8d9cac17e941d2c08 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Fri, 4 Dec 2020 15:43:50 -0800 Subject: [PATCH] [actions] switch Automatic Rebase workflow to `pull_request_target` event --- .github/workflows/rebase.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml index 436cb79..027aed0 100644 --- a/.github/workflows/rebase.yml +++ b/.github/workflows/rebase.yml @@ -1,6 +1,6 @@ name: Automatic Rebase -on: [pull_request] +on: [pull_request_target] jobs: _: @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - uses: ljharb/rebase@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}