GitHub 操作:没有事件出现,是工作流 运行?

GitHub Action: No event is appearing, is workflow running?

我已经在我的存储库中添加了 workflow inspired from https://henry.wang/2019/12/05/arm-dockerhub.html
存储库是 public,因此您可以看到 "Action" 选项卡 here

文件中存在拼写错误:

所以我修复了它 pushed the fix。但是,没有新事件出现:只有上一个 "fail" 事件,如上所示。

这是否意味着工作流程是 运行 并且未终止,或者这是否意味着工作流程尚未启动?
如果它没有启动,我做错了什么?

好的,我只是选错了分支

更改工作流文件
on:
  push:
    branches:
      - master
# ...

on:
  push:
    branches:
      - auto-build
# ...

这适用于所有分支:

on: [push]

你可以在官方文档中找到更多 https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#on

# Example: Using a list of events
# Triggers the workflow on push or pull request events
on: [push, pull_request]