From 07fcd8ff41a33f7f520efb86bece9a206d577872 Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Mon, 17 Feb 2025 09:51:55 -0500 Subject: [PATCH] Remove backport from CDT releng (#1089) It was useful when we were maintaining two branches, but now it causes numerous false negatives in PRs Reverts https://github.com/eclipse-cdt/cdt/pull/849 --- .backportrc.json | 9 --------- .github/workflows/backport.yml | 25 ------------------------- 2 files changed, 34 deletions(-) delete mode 100644 .backportrc.json delete mode 100644 .github/workflows/backport.yml diff --git a/.backportrc.json b/.backportrc.json deleted file mode 100644 index 466fa8e604f..00000000000 --- a/.backportrc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "repoOwner": "eclipse-cdt", - "repoName": "cdt", - "targetBranchChoices": ["cdt_11_6"], - "branchLabelMapping": { - "^backport-to-(.+)$": "$1" - }, - "multipleCommits": true -} diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml deleted file mode 100644 index f165a5f4e15..00000000000 --- a/.github/workflows/backport.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Automatic backport action - -on: - pull_request_target: - types: ["labeled", "closed"] - -jobs: - backport: - name: Backport PR - runs-on: ubuntu-latest - steps: - - name: Backport Action - uses: sorenlouv/backport-github-action@v9.5.1 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - auto_backport_label_prefix: backport-to- - add_original_reviewers: true - - - name: Info log - if: ${{ success() }} - run: cat ~/.backport/backport.info.log - - - name: Debug log - if: ${{ failure() }} - run: cat ~/.backport/backport.debug.log