From cea479dbfd42da00aaea473c3be2c8e7a4d525d9 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Wed, 23 Jul 2025 12:36:58 +0200 Subject: [PATCH] Delete legacy backport CI option We inherited this job from Perforce and we don't use it / it is broken. --- .github/workflows/backport.yml | 19 ------------------- 1 file changed, 19 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 4008668859..0000000000 --- a/.github/workflows/backport.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Backport merged pull request -on: - pull_request_target: - types: [labeled] -permissions: - contents: write # so it can comment - pull-requests: write # so it can create pull requests -jobs: - backport: - name: Backport merged pull request - runs-on: ubuntu-latest - # For security reasons, we don't want to checkout and run arbitrary code when - # using the pull_request_target trigger. So restrict this to cases where the - # backport label is applied to an already merged PR. - if: github.event.pull_request.merged && contains(github.event.label.name, 'backport') - steps: - - uses: actions/checkout@v4 - - name: Create backport pull requests - uses: korthout/backport-action@v1