Skip to content
Snippets Groups Projects
Unverified Commit b2e1e592 authored by Egor_P's avatar Egor_P Committed by GitHub
Browse files

[CI/CD]Revert the token changes in backport flow (#6794)

Set back the token for the cmd_bot in the backport flow so that it work
again, till the new set up will be figured out with the sec team
parent 906fa9e5
No related merge requests found
Pipeline #508566 waiting for manual action with stages
in 12 minutes and 56 seconds
......@@ -16,7 +16,6 @@ jobs:
backport:
name: Backport pull request
runs-on: ubuntu-latest
environment: release
# The 'github.event.pull_request.merged' ensures that it got into master:
if: >
......@@ -30,13 +29,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Generate content write token for the release automation
id: generate_write_token
uses: actions/create-github-app-token@v1
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v2.1.0
with:
app-id: ${{ vars.RELEASE_AUTOMATION_APP_ID }}
private-key: ${{ secrets.RELEASE_AUTOMATION_APP_PRIVATE_KEY }}
owner: paritytech
app_id: ${{ secrets.CMD_BOT_APP_ID }}
private_key: ${{ secrets.CMD_BOT_APP_KEY }}
- name: Create backport pull requests
uses: korthout/backport-action@v3
......@@ -44,7 +42,7 @@ jobs:
with:
target_branches: stable2407 stable2409 stable2412
merge_commits: skip
github_token: ${{ steps.generate_write_token.outputs.token }}
github_token: ${{ steps.generate_token.outputs.token }}
pull_description: |
Backport #${pull_number} into `${target_branch}` from ${pull_author}.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment