如何知道 github 动作何时开始?
How to know when is the github action will be started?
我目前正在为我的项目 CI-CD 使用 GitHub 操作功能,因此管道会监听主分支上的推送,并且当我执行操作时不会触发操作选项卡,我也尝试手动 运行 该管道,因为我有 workflow_dispatch
并且它说
Workflow run was successfully requested.
我不明白是否有操作排队系统或有一些优先级?还有我想知道什么时候开始,是否开始?
更新:
github 操作在几分钟后开始。
这必须取决于 Azure 服务器负载和可用性。
例如,scheduled actions附带警告:
Note: The schedule event can be delayed during periods of high loads of GitHub Actions workflow runs.
High load times include the start of every hour.
To decrease the chance of delay, schedule your workflow to run at a different time of the hour.
在您的情况下,您手动安排作业,但它必须先等待其他作业完成。
此外,在您的情况下,今天早些时候有一个 GitHub Actions incident report,它可能有一个关于您的工作安排的 side-effect。
我目前正在为我的项目 CI-CD 使用 GitHub 操作功能,因此管道会监听主分支上的推送,并且当我执行操作时不会触发操作选项卡,我也尝试手动 运行 该管道,因为我有 workflow_dispatch
并且它说
Workflow run was successfully requested.
我不明白是否有操作排队系统或有一些优先级?还有我想知道什么时候开始,是否开始?
更新:
github 操作在几分钟后开始。
这必须取决于 Azure 服务器负载和可用性。
例如,scheduled actions附带警告:
Note: The schedule event can be delayed during periods of high loads of GitHub Actions workflow runs.
High load times include the start of every hour.
To decrease the chance of delay, schedule your workflow to run at a different time of the hour.
在您的情况下,您手动安排作业,但它必须先等待其他作业完成。
此外,在您的情况下,今天早些时候有一个 GitHub Actions incident report,它可能有一个关于您的工作安排的 side-effect。