Skip to content

Commit 2a00215

Browse files
authored
fix(ci): run health-check on schedule and workflow_dispatch events (#4974)
run health-check on schedule and workflow_dispatch Signed-off-by: Yutaka Kondo <yutaka.kondo@youtalk.jp>
1 parent cc26a02 commit 2a00215

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/health-check.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919

2020
load-env:
2121
needs: label-check
22-
if: ${{ needs.label-check.outputs.result == 'true' }}
22+
if: ${{ needs.label-check.outputs.result == 'true' ||
23+
github.event_name == 'schedule' ||
24+
github.event_name == 'workflow_dispatch' }}
2325
uses: ./.github/workflows/load-env.yaml
2426

2527
docker-build:

0 commit comments

Comments
 (0)