报错及效果图
本解决方案是笔者通过Github action运行项目时报错的解决方案,如果是本地运行报此错,未必有效果。
报错代码
remote: Write access to repository not granted.
fatal: unable to access 'https://github.com/xxx/xxx/': The requested URL returned error: 403
Error: Process completed with exit code 128.
效果图
在经历N多次尝试后,终于绿了
最终效果
解决方案
必要步骤
替换之后打开此链接:https://github.com/xxx/yyy/settings/actions
xxx替换为自己GitHub的用户名,yyy替换为自己仓库的名字
当然也可以直接在该仓库中选择Settings,然后左侧选择Actions,选择General。
拖到下面找到Workflow permissions,按下图示选择,完成后点save即可
可能有效的步骤
因为我运行的代码里有文章来源:https://www.toymoban.com/news/detail-834623.html
git remote set-url origin https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
所以需要添加token
添加方式:通过此链接打开如图所示界面,当然也可以按照左上角黄框路径来选择。https://github.com/settings/tokens?type=beta
点击Generate new token
这些随便填
这个根据实际情况,我选的该项目
Permissions这里要注意修改此项:
下面此项可能有用,第一遍弄得时候改了access,懒得弄第二遍测试了 为保一次成功,最好弄上。
然后下面generate token即可。文章来源地址https://www.toymoban.com/news/detail-834623.html
到了这里,关于【完美解决】Github action报错remote: Write access to repository not granted.的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!