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