Skip to content

Commit ea7cbfb

Browse files
committed
feat: enable image tests for manual and scheduled runs
- Test images on pull requests (existing) - Test images on manual workflow dispatch - Test images on weekly scheduled runs - Skip tests on direct pushes to main (already validated by build)
1 parent f390896 commit ea7cbfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ jobs:
154154
name: Test Docker Images
155155
needs: [build-ubuntu, build-slim]
156156
runs-on: ubuntu-latest
157-
if: github.event_name == 'pull_request'
157+
if: github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule'
158158

159159
steps:
160160
- name: Checkout repository

0 commit comments

Comments
 (0)