From 041124d4a2c5993a367c26f05e59f0ab7b54341e Mon Sep 17 00:00:00 2001 From: Suryavir Kapur <52126281+suryavirkapur@users.noreply.github.com> Date: Fri, 4 Oct 2024 19:30:26 +0400 Subject: [PATCH] #925: Changes to not run Github workflow actions for docs related PRs (#928) --- .github/workflows/full-test-suite.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.github/workflows/full-test-suite.yml b/.github/workflows/full-test-suite.yml index 864d87846..7007a4d7c 100644 --- a/.github/workflows/full-test-suite.yml +++ b/.github/workflows/full-test-suite.yml @@ -2,8 +2,26 @@ name: dice-test-suite on: push: branches: [master] + paths-ignore: + - "**.md" + - "docs/**" + - ".github/**" + - "**.txt" + - "**.json" + - "**.yaml" + - "**.yml" + - "LICENSE" pull_request: branches: [master] + paths-ignore: + - "**.md" + - "docs/**" + - ".github/**" + - "**.txt" + - "**.json" + - "**.yaml" + - "**.yml" + - "LICENSE" jobs: build: @@ -22,4 +40,4 @@ jobs: - name: Run Unit tests run: make unittest - name: Run Integration tests - run: make test \ No newline at end of file + run: make test