fix trigger condition for smoketest images (#10271)
This commit is contained in:
parent
2e5ac56213
commit
0337158899
|
@ -5,6 +5,9 @@ on:
|
|||
paths:
|
||||
- "smoke-tests/images/grpc/**"
|
||||
- ".github/workflows/pr-smoke-test-grpc-images.yml"
|
||||
- ".github/workflows/reusable-smoke-test-images.yml"
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
@ -5,6 +5,9 @@ on:
|
|||
paths:
|
||||
- "smoke-tests/images/play/**"
|
||||
- ".github/workflows/pr-smoke-test-play-images.yml"
|
||||
- ".github/workflows/reusable-smoke-test-images.yml"
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
@ -5,6 +5,9 @@ on:
|
|||
paths:
|
||||
- "smoke-tests/images/quarkus/**"
|
||||
- ".github/workflows/pr-smoke-test-quarkus-images.yml"
|
||||
- ".github/workflows/reusable-smoke-test-images.yml"
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
@ -5,6 +5,9 @@ on:
|
|||
paths:
|
||||
- "smoke-tests/images/security-manager/**"
|
||||
- ".github/workflows/pr-smoke-test-security-manager-images.yml"
|
||||
- ".github/workflows/reusable-smoke-test-images.yml"
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
@ -5,6 +5,9 @@ on:
|
|||
paths:
|
||||
- "smoke-tests/images/spring-boot/**"
|
||||
- ".github/workflows/pr-smoke-test-spring-boot-images.yml"
|
||||
- ".github/workflows/reusable-smoke-test-images.yml"
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
@ -5,9 +5,9 @@ on:
|
|||
paths:
|
||||
- "smoke-tests/images/grpc/**"
|
||||
- ".github/workflows/publish-smoke-test-grpc-images.yml"
|
||||
- ".github/workflows/reusable-smoke-test-images.yml"
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
|
|
|
@ -5,9 +5,9 @@ on:
|
|||
paths:
|
||||
- "smoke-tests/images/play/**"
|
||||
- ".github/workflows/publish-smoke-test-play-images.yml"
|
||||
- ".github/workflows/reusable-smoke-test-images.yml"
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
|
|
|
@ -5,9 +5,9 @@ on:
|
|||
paths:
|
||||
- "smoke-tests/images/quarkus/**"
|
||||
- ".github/workflows/publish-smoke-test-quarkus-images.yml"
|
||||
- ".github/workflows/reusable-smoke-test-images.yml"
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
|
|
|
@ -5,9 +5,9 @@ on:
|
|||
paths:
|
||||
- "smoke-tests/images/security-manager/**"
|
||||
- ".github/workflows/publish-smoke-test-security-manager-images.yml"
|
||||
- ".github/workflows/reusable-smoke-test-images.yml"
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
|
|
|
@ -5,9 +5,9 @@ on:
|
|||
paths:
|
||||
- "smoke-tests/images/spring-boot/**"
|
||||
- ".github/workflows/publish-smoke-test-spring-boot-images.yml"
|
||||
- ".github/workflows/reusable-smoke-test-images.yml"
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
# Every workflow that includes this must also include the following to make sure that it
|
||||
# is triggered when a new JDK is added to the matrix:
|
||||
#on:
|
||||
# push:
|
||||
# paths:
|
||||
# - ".github/workflows/reusable-smoke-test-images.yml"
|
||||
|
||||
name: PR build fake backend images for smoke tests
|
||||
|
||||
on:
|
||||
|
|
Loading…
Reference in New Issue