🍇

Github Actionsで新規追加したworkflowファイルの動作確認をしたい場合

2021/01/06に公開

Github Actionsにおいて、新規作成したworkflowファイルの動作確認しようとしてbranchをpushしても、Actionsに該当のワークフローが表示されないことがある。

その場合は以下のように記載すると、pushのタイミングでworkflowが実施される。

on:
  push:
    branches:
      [my_branch]

どうも以下を参照する限り、動作確認したい場合はこのやり方が公式の推奨、と言っているように見える。(自信皆無)
https://github.community/t/workflow-files-only-picked-up-from-master/16129/16

Because of this, in order to test the workflows we need to perform a git action (ie. do push) in the created branch for test its.

Discussion