Replace secrets.GITHUB_TOKEN with github.token

This commit is contained in:
Josh Soref 2022-10-30 20:44:54 -04:00
parent 9ea76237a5
commit 6530c8fa1b
2 changed files with 2 additions and 2 deletions

View file

@ -315,7 +315,7 @@ func authHelp() string {
return heredoc.Doc(`
gh: To use GitHub CLI in a GitHub Actions workflow, set the GH_TOKEN environment variable. Example:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ github.token }}
`)
}