Search code examples
githubworkflowcontinuous-deploymentgithub-actions

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


I've added to my repository a workflow inspired from https://henry.wang/2019/12/05/arm-dockerhub.html
The repository is public so you can see the "Action" tab here.

There were a typo error in the file: workflow failed

So I fixed it and pushed the fix. However no new event is appearing: there is only the previous "fail" event as you can see above.

Does this mean that the worklow is running and is not terminated or does it mean the workflow wasn't started?
If it wasn't started what did I done wrong?


Solution

  • Ok, I just choosed the wrong branch.

    Changed the workflow file from

    on:
      push:
        branches:
          - master
    # ...
    

    to

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