From 2229330afc2b1f15cf1945b197776e2b278dedce Mon Sep 17 00:00:00 2001 From: Rossen <2720787+rossengeorgiev@users.noreply.github.com> Date: Wed, 16 Dec 2020 20:11:47 +0000 Subject: [PATCH] workflow: add ignore paths --- .github/workflows/testing_initiative.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing_initiative.yml b/.github/workflows/testing_initiative.yml index 7a86784..f660d64 100644 --- a/.github/workflows/testing_initiative.yml +++ b/.github/workflows/testing_initiative.yml @@ -6,9 +6,26 @@ name: Testing Initiative on: push: branches: [ master ] + paths-ignore: + - '.gitignore' + - '*.md' + - '*.rst' + - 'LICENSE' + - 'Vagrantfile' + - 'protobuf_list.txt' + - 'protobufs/**' + - 'recipes/**' pull_request: branches: [ master ] - + paths-ignore: + - '.gitignore' + - '*.md' + - '*.rst' + - 'LICENSE' + - 'Vagrantfile' + - 'protobuf_list.txt' + - 'protobufs/**' + - 'recipes/**' jobs: test: runs-on: ${{ matrix.os }}