From 48924966e275670623bd7e33e9089f895f6a3110 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Wed, 22 Sep 2021 13:11:37 +0200 Subject: [PATCH] Skipped GitHub actions for linters and JavaScript tests on purely doc changes. --- .github/workflows/linters.yml | 4 ++++ .github/workflows/tests.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index d66a5bfed9..2eff10a0f5 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -2,9 +2,13 @@ name: Linters on: pull_request: + paths-ignore: + - 'docs/**' push: branches: - main + paths-ignore: + - 'docs/**' jobs: flake8: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f6deea59e0..57237c247f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,9 +2,13 @@ name: Tests on: pull_request: + paths-ignore: + - 'docs/**' push: branches: - main + paths-ignore: + - 'docs/**' jobs: javascript-tests: