watchdog-go: ci 手動実行を許可
This commit is contained in:
parent
82141c76fc
commit
c8f23ae941
|
@ -4,6 +4,7 @@
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
- synchronize
|
||||||
- labeled
|
- labeled
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-docker-image:
|
build-docker-image:
|
||||||
|
@ -15,7 +16,8 @@
|
||||||
((github.event.action == 'labeled') &&
|
((github.event.action == 'labeled') &&
|
||||||
(github.event.label.name == 'watchdog-go')) ||
|
(github.event.label.name == 'watchdog-go')) ||
|
||||||
((github.event.action == 'synchronize') &&
|
((github.event.action == 'synchronize') &&
|
||||||
contains(github.event.pull_request.labels.*.name, 'watchdog-go')
|
contains(github.event.pull_request.labels.*.name, 'watchdog-go') ||
|
||||||
|
(github.event.action == 'workflow_dispatch')
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
Loading…
Reference in New Issue