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
I noticed that the Github workflow that creates a release PR failed because of authentications issues. I think this is because the Repo is configured with my github personal access token. It's surfaced as secrets.GITHUB_TOKEN in workflow files.
Release PRs are automatically created with every merged PR.
I think you can fix releases without making any changes to the workflow configs. It's been a while, but I think it goes like this.
Someone with push access to the repository create a github personal access token.
In the repository Settings > Secrets and variables > Actions > Environment secrets I think you will see one called GITHUB_TOKEN.
Replace the current GITHUB_TOKEN with the newly-created one.
The other secret needed to release is MARKETPLACE_TOKEN. I'm pretty sure that my token doesn't expire, so you shouldn't have to change that. However, if it is expired (or you just want to replace it), you can follow the steps here under Get A Personal Access Token and then replace the MARKETPLACE_TOKEN in the repo secrets.
The text was updated successfully, but these errors were encountered:
I noticed that the Github workflow that creates a release PR failed because of authentications issues. I think this is because the Repo is configured with my github personal access token. It's surfaced as
secrets.GITHUB_TOKEN
in workflow files.Release PRs are automatically created with every merged PR.
alloglot/.github/workflows/release.yaml
Line 54 in 8ce931d
I think you can fix releases without making any changes to the workflow configs. It's been a while, but I think it goes like this.
GITHUB_TOKEN
.GITHUB_TOKEN
with the newly-created one.The other secret needed to release is
MARKETPLACE_TOKEN
. I'm pretty sure that my token doesn't expire, so you shouldn't have to change that. However, if it is expired (or you just want to replace it), you can follow the steps here under Get A Personal Access Token and then replace theMARKETPLACE_TOKEN
in the repo secrets.The text was updated successfully, but these errors were encountered: