Skip to content

Commit 64edc9b

Browse files
committed
Don't run GH jobs for pure textual changes
Exclude docs, readme and theme changes, to avoid unnecessary load in GH. Signed-off-by: Mike Lischke <mike@lischke-online.de>
1 parent 270eccd commit 64edc9b

3 files changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/nodejs-windows.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,18 @@ name: Build & Test on Windows
33
on:
44
push:
55
branches: [ main ]
6+
paths-ignore:
7+
- '**.md'
8+
- 'docs/**'
9+
- 'License.txt'
10+
- 'themes/**'
611
pull_request:
712
branches: [ main ]
13+
paths-ignore:
14+
- '**.md'
15+
- 'docs/**'
16+
- 'License.txt'
17+
- 'themes/**'
818

919
jobs:
1020
build:

.github/workflows/nodejs.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,18 @@ name: Build & Test
33
on:
44
push:
55
branches: [ main, 'features/**' ]
6+
paths-ignore:
7+
- '**.md'
8+
- 'docs/**'
9+
- 'License.txt'
10+
- 'themes/**'
611
pull_request:
712
branches: [ main, 'features/**' ]
13+
paths-ignore:
14+
- '**.md'
15+
- 'docs/**'
16+
- 'License.txt'
17+
- 'themes/**'
818

919
jobs:
1020
build:

.github/workflows/playwright.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,18 @@ name: E2E Tests
33
on:
44
push:
55
branches: [ main ]
6+
paths-ignore:
7+
- '**.md'
8+
- 'docs/**'
9+
- 'License.txt'
10+
- 'themes/**'
611
pull_request:
712
branches: [ main ]
13+
paths-ignore:
14+
- '**.md'
15+
- 'docs/**'
16+
- 'License.txt'
17+
- 'themes/**'
818
workflow_dispatch:
919

1020
jobs:

0 commit comments

Comments
 (0)