-
-
Notifications
You must be signed in to change notification settings - Fork 18
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
-
v3.9.0at commit75212b5b- Error: Git command 'git -C /tmp/tagbot_repo_jvvbn8ke push origin v3.9.0' failed
-
v3.10.0at commitd0f88d23- Error: Git command 'git -C /tmp/tagbot_repo_jvvbn8ke push origin v3.10.0' failed
-
v3.10.1at commit66a530a3- Error: Git command 'git -C /tmp/tagbot_repo_jvvbn8ke push origin v3.10.1' failed
How to fix
Run these commands locally:
git tag -a v3.9.0 75212b5b9cd1ae26841c28b112d554131d256792 -m 'v3.9.0' && git push origin v3.9.0 && gh release create v3.9.0 --generate-notes
git tag -a v3.10.0 d0f88d237f9db7047a3f836aeb9d7608ffaf3818 -m 'v3.10.0' && git push origin v3.10.0 && gh release create v3.10.0 --generate-notes
git tag -a v3.10.1 66a530a387c759e1ad81ab6b8f4f00ca8fa45c39 -m 'v3.10.1' && git push origin v3.10.1 && gh release create v3.10.1 --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)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
tagbot-manualTagBot needs manual interventionTagBot needs manual intervention