-
Notifications
You must be signed in to change notification settings - Fork 12
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.6.8at commit815bf2a5- Error: Git command 'git -C /tmp/tagbot_repo_l3mcsajn push origin v0.6.8' failed: To https://github.com/JuliaGraphs/MetaGraphs.jl
! [remote rejected] v0.6.8 -> v0.6.8 (refusing to allow a GitHub App to create or update workflow.github/workflows/ci.ymlwithoutworkflowspermission)
error: failed to push some refs to 'https://github.com/JuliaGraphs/MetaGraphs.jl' (provide workflow scope or avoid workflow changes)
- Error: Git command 'git -C /tmp/tagbot_repo_l3mcsajn push origin v0.6.8' failed: To https://github.com/JuliaGraphs/MetaGraphs.jl
-
v0.7.0at commit97a42ed9- Error: Git command 'git -C /tmp/tagbot_repo_l3mcsajn push origin v0.7.0' failed: To https://github.com/JuliaGraphs/MetaGraphs.jl
! [remote rejected] v0.7.0 -> v0.7.0 (refusing to allow a GitHub App to create or update workflow.github/workflows/ci.ymlwithoutworkflowspermission)
error: failed to push some refs to 'https://github.com/JuliaGraphs/MetaGraphs.jl' (provide workflow scope or avoid workflow changes)
- Error: Git command 'git -C /tmp/tagbot_repo_l3mcsajn push origin v0.7.0' failed: To https://github.com/JuliaGraphs/MetaGraphs.jl
-
v0.9.0at commitbe60ba05- Error: Git command 'git -C /tmp/tagbot_repo_l3mcsajn push origin v0.9.0' failed: To https://github.com/JuliaGraphs/MetaGraphs.jl
! [remote rejected] v0.9.0 -> v0.9.0 (refusing to allow a GitHub App to create or update workflow.github/workflows/ci.ymlwithoutworkflowspermission)
error: failed to push some refs to 'https://github.com/JuliaGraphs/MetaGraphs.jl' (provide workflow scope or avoid workflow changes)
- Error: Git command 'git -C /tmp/tagbot_repo_l3mcsajn push origin v0.9.0' failed: To https://github.com/JuliaGraphs/MetaGraphs.jl
How to fix
Run these commands locally:
git tag -a v0.6.8 815bf2a50280e406d571c23a872e3b16cbc2fc93 -m 'v0.6.8' && git push origin v0.6.8 && gh release create v0.6.8 --generate-notes
git tag -a v0.7.0 97a42ed985aa7418ab473f0b320dd068bfca616f -m 'v0.7.0' && git push origin v0.7.0 && gh release create v0.7.0 --generate-notes
git tag -a v0.9.0 be60ba057ff6bae3be2ffbce314bb40391360439 -m 'v0.9.0' && git push origin v0.9.0 && gh release create v0.9.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