From 37767d795734cdd7118dd004a98019a3fcf5a317 Mon Sep 17 00:00:00 2001 From: Bartek Kryza Date: Sat, 28 Jan 2023 12:58:29 +0100 Subject: [PATCH] Updated github actions to disable builds on doc files --- .github/workflows/build.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index edf03a0c..562cd3af 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,24 @@ name: build -on: [push, pull_request] +on: + push: + paths-ignore: + - 'docs/**' + - 'packaging/**' + - 'util/**' + - 'uml/**' + - '**.md' + branches-ignore: + - 'noactions/*' + pull_request: + paths-ignore: + - 'docs/**' + - 'packaging/**' + - 'util/**' + - 'uml/**' + - '**.md' + branches-ignore: + - 'noactions/*' jobs: build-ubuntu: