Skip to content

Commit f6b3f90

Browse files
Only trigger pull request action on Dockerfile change
Since we currently do not have any tests for the bash code it is pointless to trigger the GitHub Action that builds the Docker image, since changes to anything else will have no impact on this. We therefore limit to only trigger a build on pull request when they introduce changes to the Dockerfile.
1 parent 6a5cdca commit f6b3f90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build_latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- "main"
1414
- "master"
1515
paths:
16-
- "src/**"
16+
- "src/Dockerfile*"
1717

1818
jobs:
1919
docker_buildx_debian:

0 commit comments

Comments
 (0)