aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2023-10-03 11:14:25 +0100
committerGravatar Chris Lovering <[email protected]>2023-10-03 11:14:25 +0100
commit6473a293a851688b98de4132fe1e7a84c9422a7d (patch)
tree9bcfee0256cd81a8fe753048173df7249ee51ce3
parentAdd example Docker file and docker compose files, and suggested usages (diff)
Only trigger CI on push if the commit changes the Dockerfile or CI
-rw-r--r--.github/workflows/build.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 85ea16e..5b4e0c5 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -5,6 +5,9 @@ on:
push:
branches:
- main
+ paths:
+ - 'Dockerfile'
+ - '.github/workflows/**'
schedule:
# Rerun CI daily to keep up-to-date with upstream python updates
- cron: '0 0 * * *'