Skip to content

Commit 0897d53

Browse files
authored
Fix/container action triggering paths (#397)
* The workflow triggering paths are added for all docker stack images
1 parent 81f18fd commit 0897d53

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/docker.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,46 @@ on:
88
# We use local reusable workflows to make architecture clean an simple
99
# https://docs.github.com/en/actions/using-workflows/reusing-workflows
1010
- ".github/workflows/docker-build-test-upload.yml"
11+
- ".github/workflows/docker-merge-tags.yml"
12+
- ".github/workflows/docker-push.yml"
13+
14+
# We use local composite actions to combine multiple workflow steps within one action
15+
# https://docs.github.com/en/actions/creating-actions/about-custom-actions#composite-actions
16+
- ".github/actions/create-dev-env/action.yml"
17+
- ".github/actions/load-image/action.yml"
1118

1219
- "stack/base/**"
1320
- "stack/base-with-services/**"
21+
- "stack/lab/**"
22+
- "stack/full-stack/**"
23+
- "build.json"
24+
- "docker-bake.hcl"
25+
- "tests/**"
26+
- "requirements-dev.txt"
1427
push:
1528
branches:
1629
- main
1730
paths:
1831
- ".github/workflows/docker.yml"
32+
# We use local reusable workflows to make architecture clean an simple
33+
# https://docs.github.com/en/actions/using-workflows/reusing-workflows
1934
- ".github/workflows/docker-build-test-upload.yml"
35+
- ".github/workflows/docker-merge-tags.yml"
36+
- ".github/workflows/docker-push.yml"
37+
38+
# We use local composite actions to combine multiple workflow steps within one action
39+
# https://docs.github.com/en/actions/creating-actions/about-custom-actions#composite-actions
40+
- ".github/actions/create-dev-env/action.yml"
41+
- ".github/actions/load-image/action.yml"
2042

2143
- "stack/base/**"
2244
- "stack/base-with-services/**"
45+
- "stack/lab/**"
46+
- "stack/full-stack/**"
47+
- "build.json"
48+
- "docker-bake.hcl"
49+
- "tests/**"
50+
- "requirements-dev.txt"
2351
workflow_dispatch:
2452

2553
# https://docs.github.com/en/actions/using-jobs/using-concurrency

0 commit comments

Comments
 (0)