Skip to content

Commit

Permalink
Fix access tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoeders committed Nov 14, 2023
1 parent edeb863 commit 91b5dda
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ jobs:
ls -la ./
- uses: actions/checkout@v3
with:
token: ${{ secrets.GMT_TOOLS_PAT || github.token}}
# This is a personal access token with access to the gmt_tools repo.
# It is stored as a repo secret in BFASST and a dependabot secret in BFASST
# (for PRs generated by dependabot).
token: ${{ secrets.GMT_TOOLS_PAT }}
submodules: 'recursive'
- uses: ./.github/actions/setup_env
with:
Expand Down Expand Up @@ -78,7 +81,10 @@ jobs:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GMT_TOOLS_PAT || github.token}}
# This is a personal access token with access to the gmt_tools repo.
# It is stored as a repo secret in BFASST and a dependabot secret in BFASST
# (for PRs generated by dependabot).
token: ${{ secrets.GMT_TOOLS_PAT }}
submodules: 'recursive'

- uses: ./.github/actions/setup_env
Expand Down

0 comments on commit 91b5dda

Please sign in to comment.