File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 11name : Build and Push Docker Images to Harbor
22
33on :
4+ pull_request :
5+ paths-ignore :
6+ - ' **.md'
7+ - ' docs/**'
8+ branches :
9+ - ' scalefield_v*'
410 push :
511 paths-ignore :
612 - ' **.md'
2531 default : true
2632
2733concurrency :
28- group : ${{ github.ref }}
34+ group : ${{ github.workflow }}-${{ github. ref }}-${{ github.event_name }}
2935 cancel-in-progress : true
3036
3137jobs :
3238 e2e-tests :
3339 name : Run E2E Tests
34- if : github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.run_e2e_tests)
40+ if : github.event_name == 'push' || github.event_name == 'pull_request' || (github.event_name == 'workflow_dispatch' && inputs.run_e2e_tests)
3541 uses : ./.github/workflows/run_e2e.yaml
3642
3743 build-and-push :
3844 name : Build and Push Docker Images to Harbor
3945 needs : [e2e-tests]
4046 if : always() && (needs.e2e-tests.result == 'success' || needs.e2e-tests.result == 'skipped')
41- runs-on : ubuntu-latest-m
47+ runs-on : ubuntu-latest
48+ timeout-minutes : 60
4249 env :
4350 SLACK_WEBHOOK : ${{ secrets.SLACK_WEBHOOK }}
4451 steps :
Original file line number Diff line number Diff line change 11name : operator-e2e-tests
22
3- on :
3+ on :
4+ workflow_call :
45 pull_request :
56 push :
67 branches :
You can’t perform that action at this time.
0 commit comments