We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0df17b1 commit 5ffa9ceCopy full SHA for 5ffa9ce
.github/workflows/build-and-push.yml
@@ -1,6 +1,12 @@
1
name: Build and Push Docker Images to Harbor
2
3
on:
4
+ pull_request:
5
+ paths-ignore:
6
+ - '**.md'
7
+ - 'docs/**'
8
+ branches:
9
+ - 'scalefield_v*'
10
push:
11
paths-ignore:
12
- '**.md'
@@ -31,7 +37,7 @@ concurrency:
31
37
jobs:
32
38
e2e-tests:
33
39
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)
35
41
uses: ./.github/workflows/run_e2e.yaml
36
42
43
build-and-push:
0 commit comments