-
-
Notifications
You must be signed in to change notification settings - Fork 10
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
-
v1.2.1at commit275cde92- Error: Git command 'git -C /tmp/tagbot_repo_yu8xdv3r push origin v1.2.1' failed
-
v2.0.0at commit19fb9c75- Error: Git command 'git -C /tmp/tagbot_repo_yu8xdv3r push origin v2.0.0' failed
-
v2.1.0at commit4c72b98f- Error: Git command 'git -C /tmp/tagbot_repo_yu8xdv3r push origin v2.1.0' failed
How to fix
Run these commands locally:
git tag -a v1.2.1 275cde924039c9fdbd1f04651025c349599213d5 -m 'v1.2.1' && git push origin v1.2.1 && gh release create v1.2.1 --generate-notes
git tag -a v2.0.0 19fb9c754680a1c3baedd9576ced3fe2bc99b3b5 -m 'v2.0.0' && git push origin v2.0.0 && gh release create v2.0.0 --generate-notes
git tag -a v2.1.0 4c72b98f67d6fb2c6412e14a98ffee175e775fbb -m 'v2.1.0' && git push origin v2.1.0 && gh release create v2.1.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)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
tagbot-manualTagBot needs manual interventionTagBot needs manual intervention