-
-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
tagbot-manualTagBot needs manual interventionTagBot needs manual intervention
Description
TagBot could not automatically create releases for the following versions. This may be because:
- The commits modify workflow files (
.github/workflows/), whichGITHUB_TOKENcannot operate on - The tag already exists but the release failed to be created
- A network or API error occurred
Versions needing manual release
-
v0.3.5at commit6956b64b- Error: Git command 'git -C /tmp/tagbot_repo_oia71hgr push origin v0.3.5' failed
-
v0.3.7at commit037240b9- Error: Git command 'git -C /tmp/tagbot_repo_oia71hgr push origin v0.3.7' failed
-
v0.3.8at commite965e030- Error: Git command 'git -C /tmp/tagbot_repo_oia71hgr push origin v0.3.8' failed
-
v0.3.9at commit292a753c- Error: Git command 'git -C /tmp/tagbot_repo_oia71hgr push origin v0.3.9' failed
-
v1.2.0at commita359f38f- Error: Git command 'git -C /tmp/tagbot_repo_oia71hgr push origin v1.2.0' failed
How to fix
Run these commands locally:
git tag -a v0.3.5 6956b64b0ccb503fbe08fce87f8940e7ae9d31fe -m 'v0.3.5' && git push origin v0.3.5 && gh release create v0.3.5 --generate-notes
git tag -a v0.3.7 037240b9c06d528b49fe63289095ae0dd5162ebc -m 'v0.3.7' && git push origin v0.3.7 && gh release create v0.3.7 --generate-notes
git tag -a v0.3.8 e965e0302438bf1c21c285885bb0744ff480503b -m 'v0.3.8' && git push origin v0.3.8 && gh release create v0.3.8 --generate-notes
git tag -a v0.3.9 292a753cf55f2c3e4fc32525c122d97de77f5048 -m 'v0.3.9' && git push origin v0.3.9 && gh release create v0.3.9 --generate-notes
git tag -a v1.2.0 a359f38f47ab78d94890da3e45d96d11a61c08df -m 'v1.2.0' && git push origin v1.2.0 && gh release create v1.2.0 --generate-notesOr create releases manually via the GitHub UI.
Prevent this in the future
If this is due to workflow file changes, avoid modifying them in the same commit as version bumps, or use a Personal Access Token with workflow scope.
See TagBot troubleshooting for details.
This issue was automatically created by TagBot. (Run logs)
Metadata
Metadata
Assignees
Labels
tagbot-manualTagBot needs manual interventionTagBot needs manual intervention