-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Secrets in a github repo shouldn't start with GITHUB_ #15
Comments
Hello @AlyaGomaa, GitHub provides a token that you can use to authenticate on behalf of GitHub Actions. At the start of each workflow run, GitHub automatically creates a unique You can use the Usage example: name: Pull request labeler
on: [ pull_request ]
jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
oh ok, |
Yepp this is the only exception. |
i guess GITHUB_TOKEN in README.md should be changed
The text was updated successfully, but these errors were encountered: