Skip to content

Commit

Permalink
Add token to checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilchodola authored Nov 29, 2024
1 parent f1e4a53 commit c33f96a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/sync-supported-chains.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,14 @@ jobs:
timeout-minutes: ${{ matrix.config.timeout }}

steps:
- name: Authenticate App
id: gh-app
uses: actions/create-github-app-token@v1
with:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
repositories: "nethermind,post-merge-smoke-tests"

- name: Checkout repository
uses: actions/checkout@v4
with:
Expand All @@ -94,6 +102,7 @@ jobs:
with:
repository: NethermindEth/post-merge-smoke-tests
path: tests
token: ${{ steps.gh-app.outputs.token }}
clean: true

- name: Installing requirements
Expand Down

0 comments on commit c33f96a

Please sign in to comment.