summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-09-22 13:11:37 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-01-31 14:08:30 +0100
commitca8c5bd69065d6bff8bff61e12f4b52072a06007 (patch)
tree26468e10d6fc23b34635352d77154a68f84101dc
parent2d13db1b4ad2e742f99ed7245f727ec5b1144187 (diff)
[4.0.x] Skipped GitHub actions for linters and JavaScript tests on purely doc changes.
Backport of 48924966e275670623bd7e33e9089f895f6a3110 from main
-rw-r--r--.github/workflows/linters.yml4
-rw-r--r--.github/workflows/tests.yml4
2 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml
index 66bd4f5824..280800b9ea 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: