Skip to content

Commit

Permalink
Update token.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianpujina committed Jan 30, 2024
1 parent 48095ae commit ad2491a
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/trigger-automated-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,26 @@ jobs:
if: github.event.label.name == 'Ready for QA'
runs-on: ubuntu-latest
steps:
- name: Get GitHub application JWT
id: get-gh-app-jwt
uses: chili-publish/delivery-github-utilities/actions/get-gh-app-jwt@get-gh-app-jwt_1.0.0
with:
gh-app-private-key: ${{ secrets.GH_APP_PRIVATE_KEY_CHILI_REPO_ACTIONS }}
gh-app-id: ${{ vars.GH_APP_ID_CHILI_REPO_ACTIONS }}

- name: Get GitHub application installation access token
id: get-gh-app-installation-access-token
uses: chili-publish/delivery-github-utilities/actions/get-gh-app-installation-access-token@get-gh-app-installation-access-token_1.0.0
with:
gh-app-jwt: ${{ steps.get-gh-app-jwt.outputs.gh-app-jwt }}
gh-app-installation-id: ${{ vars.GH_APP_INSTALL_ID_CHILI_REPO_ACTIONS }}

- name: Trigger the automated tests
uses: convictional/[email protected]
with:
owner: brapoprod
repo: editor-qa-framework
github_token: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ steps.get-gh-app-installation-access-token.outputs.gh-app-installation-access-token }}
workflow_file_name: parallel_run_trigger.yml
ref: main
wait_interval: 10
Expand Down

0 comments on commit ad2491a

Please sign in to comment.