You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The action failed always with: HttpError: You must authenticate via a GitHub App.
If i understand it correctly, every workflow run creates/updates the secret GITHUB_TOKEN
and your action only works if you configure it with this token:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
If you can use it only this way, you should not make it configurable and
implement it hard-coded.
The text was updated successfully, but these errors were encountered:
I have created a github token called GITHUB_TOCKEN_BLACK_DUCK
and wanted it to use it in my actions with:
The action failed always with:
HttpError: You must authenticate via a GitHub App.
If i understand it correctly, every workflow run creates/updates the secret GITHUB_TOKEN
and your action only works if you configure it with this token:
If you can use it only this way, you should not make it configurable and
implement it hard-coded.
The text was updated successfully, but these errors were encountered: