We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
最先开始 .github/workflows/dependencies.bump.yml 和 .github/workflows/pull-requests.auto-update.yml 等一些 GitHub Actions 使用的 token 是 GITHUB_TOKEN 。
.github/workflows/dependencies.bump.yml
.github/workflows/pull-requests.auto-update.yml
GITHUB_TOKEN
这样 git commits 的 author 就是 github-actions[bot] ,但是会导致一个问题一些 checks 卡住,一只显示 Expected — Waiting for status to be reported ,无法合并。
github-actions[bot]
Expected — Waiting for status to be reported
所以目前的 token 用的是 PAT (Personal Access Tokens) ,这样 checks 可以正常执行,但是产生了新问题: git commits 的 author 是用户,而不是 github-actions[bot] 。
目标是既可以正常合并,git commits 的 author 又是 github-actions[bot] 。
参考 https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#triggering-further-workflow-runs
The text was updated successfully, but these errors were encountered:
另外 .github/workflows/pull-requests.auto-merge.yml 中的 if 也会受影响。
.github/workflows/pull-requests.auto-merge.yml
if
#537
Sorry, something went wrong.
donniean
No branches or pull requests
最先开始
.github/workflows/dependencies.bump.yml
和.github/workflows/pull-requests.auto-update.yml
等一些 GitHub Actions 使用的 token 是GITHUB_TOKEN
。这样 git commits 的 author 就是
github-actions[bot]
,但是会导致一个问题一些 checks 卡住,一只显示Expected — Waiting for status to be reported
,无法合并。所以目前的 token 用的是 PAT (Personal Access Tokens) ,这样 checks 可以正常执行,但是产生了新问题: git commits 的 author 是用户,而不是
github-actions[bot]
。目标是既可以正常合并,git commits 的 author 又是
github-actions[bot]
。参考 https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#triggering-further-workflow-runs
The text was updated successfully, but these errors were encountered: