Skip to content

Commit ee7943e

Browse files
committed
Trying to fix github actions when merging to main
There is no GH_PAT configured in the secrets for this new repo. Changed the variable to GITHUB_TOKEN to check if it has enough permissions, if it doesn't we will need to create a PAT and add it to the repo secrets.
1 parent ea293e8 commit ee7943e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
if: github.event_name != 'pull_request'
2828
uses: actions/checkout@v4
2929
with:
30-
token: ${{ secrets.GH_PAT }}
30+
token: ${{ secrets.GITHUB_TOKEN }}
3131

3232
- name: Checkout without token
3333
if: github.event_name == 'pull_request'

0 commit comments

Comments
 (0)