ci: feature ブランチへの push と手動実行に対応

takt/** ブランチへの push でも CI が走るよう push トリガーを拡張し、
workflow_dispatch を追加して GitHub UI からの手動実行を可能にする
This commit is contained in:
nrslib 2026-03-02 23:23:36 +09:00
parent 29f8ca4bdc
commit dfbc455807

View File

@ -5,7 +5,8 @@ on:
branches: [main] branches: [main]
types: [opened, synchronize, ready_for_review] types: [opened, synchronize, ready_for_review]
push: push:
branches: [main] branches: [main, "takt/**"]
workflow_dispatch:
jobs: jobs:
lint: lint: