fix trigger condition for smoketest images (#10271)

This commit is contained in:
Gregor Zeitlinger 2024-01-30 12:45:57 +01:00 committed by GitHub
parent 2e5ac56213
commit 0337158899
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
11 changed files with 27 additions and 5 deletions

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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: