Skip to content

Commit d89382c

Browse files
committed
Update workflow to not run on doc update
1 parent 5e7c315 commit d89382c

7 files changed

Lines changed: 56 additions & 0 deletions

File tree

.github/workflows/arduino-lint.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@ on:
88
branches:
99
- main
1010
- release/*
11+
paths-ignore:
12+
- "docs/**"
13+
- "mkdocs.yml"
14+
- "README.md"
1115
pull_request:
16+
paths-ignore:
17+
- "docs/**"
18+
- "mkdocs.yml"
19+
- "README.md"
1220

1321
concurrency:
1422
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

.github/workflows/build-esp32.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@ on:
88
branches:
99
- main
1010
- release/*
11+
paths-ignore:
12+
- "docs/**"
13+
- "mkdocs.yml"
14+
- "README.md"
1115
pull_request:
16+
paths-ignore:
17+
- "docs/**"
18+
- "mkdocs.yml"
19+
- "README.md"
1220

1321
concurrency:
1422
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

.github/workflows/build-esp8266.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@ on:
88
branches:
99
- main
1010
- release/*
11+
paths-ignore:
12+
- "docs/**"
13+
- "mkdocs.yml"
14+
- "README.md"
1115
pull_request:
16+
paths-ignore:
17+
- "docs/**"
18+
- "mkdocs.yml"
19+
- "README.md"
1220

1321
concurrency:
1422
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

.github/workflows/build-libretiny.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@ on:
88
branches:
99
- main
1010
- release/*
11+
paths-ignore:
12+
- "docs/**"
13+
- "mkdocs.yml"
14+
- "README.md"
1115
pull_request:
16+
paths-ignore:
17+
- "docs/**"
18+
- "mkdocs.yml"
19+
- "README.md"
1220

1321
concurrency:
1422
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

.github/workflows/build-rpi.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@ on:
88
branches:
99
- main
1010
- release/*
11+
paths-ignore:
12+
- "docs/**"
13+
- "mkdocs.yml"
14+
- "README.md"
1115
pull_request:
16+
paths-ignore:
17+
- "docs/**"
18+
- "mkdocs.yml"
19+
- "README.md"
1220

1321
concurrency:
1422
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

.github/workflows/cpplint.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@ on:
88
branches:
99
- main
1010
- release/*
11+
paths-ignore:
12+
- "docs/**"
13+
- "mkdocs.yml"
14+
- "README.md"
1115
pull_request:
16+
paths-ignore:
17+
- "docs/**"
18+
- "mkdocs.yml"
19+
- "README.md"
1220

1321
concurrency:
1422
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

.github/workflows/pre-commit.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,16 @@ on:
55
push:
66
branches:
77
- main
8+
paths-ignore:
9+
- "docs/**"
10+
- "mkdocs.yml"
11+
- "README.md"
812
pull_request:
913
types: [opened, reopened, synchronize, labeled]
14+
paths-ignore:
15+
- "docs/**"
16+
- "mkdocs.yml"
17+
- "README.md"
1018

1119
concurrency:
1220
group: pre-commit-${{github.event.pull_request.number || github.ref}}

0 commit comments

Comments
 (0)