Browse Source

Change trigger to only run on changes to Docker related files

wernerfred 4 years ago
parent
commit
19dccf1d9b
1 changed files with 6 additions and 0 deletions
  1. 6 0
      .github/workflows/docker-image-ci.yml

+ 6 - 0
.github/workflows/docker-image-ci.yml

@@ -3,8 +3,14 @@ name: Docker Image CI
 on:
   push:
     branches: [ master ]
+    paths:
+      - 'Dockerfile'
+      - 'entrypoint.sh'
   pull_request:
     branches: [ master ]
+    paths:
+      - 'Dockerfile'
+      - 'entrypoint.sh' 
 
 jobs:
   lint: