From 928d935b749379c780ba1b2769226d45fd15dcac Mon Sep 17 00:00:00 2001 From: David Galloway Date: Thu, 30 Jun 2022 15:06:49 -0400 Subject: [PATCH] Revert ".github: Support for automatically creating backport PRs when labeled" This reverts commit f5f9459fb22d4c832cac88abfc1b92ab7304ed51. Signed-off-by: David Galloway --- .github/workflows/backport.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/backport.yml diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml deleted file mode 100644 index e1fb96bd2bb..00000000000 --- a/.github/workflows/backport.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Automatically backport labeled PRs -on: - pull_request_target: - types: - - closed - - labeled - -jobs: - backport: - name: Backport - runs-on: ubuntu-latest - # Only react to merged PRs for security reasons. - # See https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target. - if: > - github.event.pull_request.merged - && ( - github.event.action == 'closed' - || ( - github.event.action == 'labeled' - && contains(github.event.label.name, 'backport') - ) - ) - steps: - - uses: tibdex/backport@v2 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} -- 2.39.5