summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean E. Russell <ser@ser1.net>2020-05-13 12:29:09 -0500
committerSean E. Russell <ser@ser1.net>2020-05-13 12:29:09 -0500
commit28df77fe42f4c78e51e62a99c467ff6c37c513d4 (patch)
treec132c32e6eb0229bec755db8101a008c0eeda0fe
parent0406a680e0e69d20d0cf17e37059bb69e57cb901 (diff)
Have the build workflow ignore commits containing only doc changes.
-rw-r--r--.github/workflows/build.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c87949b..6de087d 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -1,6 +1,11 @@
name: Build Go binaries
-on: push
+on:
+ push:
+ paths-ignore:
+ - 'docs/release.svg'
+ - 'README.md'
+ - 'CHANGELOG.md'
jobs:
build: