Skip to content

Commit

Permalink
run health-check on schedule and workflow_dispatch
Browse files Browse the repository at this point in the history
Signed-off-by: Yutaka Kondo <[email protected]>
  • Loading branch information
youtalk committed Jul 11, 2024
1 parent cc26a02 commit 305f33f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/health-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:

load-env:
needs: label-check
if: ${{ needs.label-check.outputs.result == 'true' }}
if: ${{ needs.label-check.outputs.result == 'true' ||
github.event_name == 'schedule' ||
github.event_name == 'workflow_dispatch' }}
uses: ./.github/workflows/load-env.yaml

docker-build:
Expand Down

0 comments on commit 305f33f

Please sign in to comment.