Updates the backport tool (#1896)
Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
This commit is contained in:
parent
f7bba7121e
commit
bcaf1aeab8
|
@ -12,6 +12,17 @@ jobs:
|
||||||
contents: write
|
contents: write
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
name: Backport
|
name: Backport
|
||||||
|
# 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:
|
steps:
|
||||||
- name: GitHub App token
|
- name: GitHub App token
|
||||||
id: github_app_token
|
id: github_app_token
|
||||||
|
@ -22,10 +33,9 @@ jobs:
|
||||||
# opensearch-trigger-bot installation ID
|
# opensearch-trigger-bot installation ID
|
||||||
installation_id: 22958780
|
installation_id: 22958780
|
||||||
|
|
||||||
# Using fork of https://github.com/tibdex/backport
|
|
||||||
# https://github.com/tibdex/backport/pull/81
|
|
||||||
- name: Backport
|
- name: Backport
|
||||||
uses: VachaShah/backport@v1.1.4
|
uses: VachaShah/backport@v2.1.0
|
||||||
with:
|
with:
|
||||||
github_token: ${{ steps.github_app_token.outputs.token }}
|
github_token: ${{ steps.github_app_token.outputs.token }}
|
||||||
branch_name: backport/backport-${{ github.event.number }}
|
head_template: backport/backport-<%= number %>-to-<%= base %>
|
||||||
|
files_to_skip: "CHANGELOG.md"
|
Loading…
Reference in New Issue