From dae5331df696b6ab101baf3ff56f57c4f9272a14 Mon Sep 17 00:00:00 2001 From: Rohit Ashiwal Date: Thu, 15 Feb 2024 14:57:00 +0530 Subject: [PATCH] .github: update backport to not run on backport PRs (#989) Signed-off-by: Rohit Ashiwal --- .github/workflows/backport.yml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index 798e3d69e..2a9517717 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -7,15 +7,26 @@ on: 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') + ) + ) permissions: contents: write pull-requests: write - name: Backport steps: - name: GitHub App token id: github_app_token - uses: tibdex/github-app-token@v1.5.0 + uses: tibdex/github-app-token@v2.1.0 with: app_id: ${{ secrets.APP_ID }} private_key: ${{ secrets.APP_PRIVATE_KEY }} @@ -25,6 +36,5 @@ jobs: uses: VachaShah/backport@v2.2.0 with: github_token: ${{ steps.github_app_token.outputs.token }} - branch_name: backport/backport-${{ github.event.number }} - labels_template: "<%= JSON.stringify([...labels, 'autocut']) %>" - failure_labels: "failed backport" + head_template: backport/backport-<%= number %>-to-<%= base %> + failure_labels: backport-failed