Skip to content

Commit 3c03d27

Browse files
authored
Don't trigger CI on doc changes. (shader-slang#4736)
1 parent a443350 commit 3c03d27

6 files changed

+50
-0
lines changed

.github/workflows/ci.yml

+10
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,18 @@ name: CI
33
on:
44
push:
55
branches: [master]
6+
paths-ignore:
7+
- 'docs/**'
8+
- 'LICENCE'
9+
- 'CONTRIBUTION.md'
10+
- 'README.md'
611
pull_request:
712
branches: [master]
13+
paths-ignore:
14+
- 'docs/**'
15+
- 'LICENCE'
16+
- 'CONTRIBUTION.md'
17+
- 'README.md'
818
concurrency:
919
group: ${{ github.workflow }}-${{ github.ref }}
1020
cancel-in-progress: true

.github/workflows/compile-regression-test.yml

+10
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,18 @@ name: Compile Regression-Test
33
on:
44
push:
55
branches: [ master ]
6+
paths-ignore:
7+
- 'docs/**'
8+
- 'LICENCE'
9+
- 'CONTRIBUTION.md'
10+
- 'README.md'
611
pull_request:
712
branches: [ master ]
13+
paths-ignore:
14+
- 'docs/**'
15+
- 'LICENCE'
16+
- 'CONTRIBUTION.md'
17+
- 'README.md'
818
concurrency:
919
group: ${{ github.workflow }}-${{ github.ref }}
1020
cancel-in-progress: true

.github/workflows/ensure-pr-label.yml

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ name: Verify PR Labels
22
on:
33
pull_request:
44
types: [opened, labeled, unlabeled, synchronize]
5+
paths-ignore:
6+
- 'docs/**'
7+
- 'LICENCE'
8+
- 'CONTRIBUTION.md'
9+
- 'README.md'
510
jobs:
611
label:
712
runs-on: ubuntu-latest

.github/workflows/falcor-compiler-perf-test.yml

+10
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,18 @@ name: Falcor Compiler Perf-Test
55
on:
66
push:
77
branches: [ master ]
8+
paths-ignore:
9+
- 'docs/**'
10+
- 'LICENCE'
11+
- 'CONTRIBUTION.md'
12+
- 'README.md'
813
pull_request:
914
branches: [ master ]
15+
paths-ignore:
16+
- 'docs/**'
17+
- 'LICENCE'
18+
- 'CONTRIBUTION.md'
19+
- 'README.md'
1020
concurrency:
1121
group: ${{ github.workflow }}-${{ github.ref }}
1222
cancel-in-progress: true

.github/workflows/falcor-test.yml

+10
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,18 @@ name: Falcor Tests
33
on:
44
push:
55
branches: [ master ]
6+
paths-ignore:
7+
- 'docs/**'
8+
- 'LICENCE'
9+
- 'CONTRIBUTION.md'
10+
- 'README.md'
611
pull_request:
712
branches: [ master ]
13+
paths-ignore:
14+
- 'docs/**'
15+
- 'LICENCE'
16+
- 'CONTRIBUTION.md'
17+
- 'README.md'
818
concurrency:
919
group: ${{ github.workflow }}-${{ github.ref }}
1020
cancel-in-progress: true

.github/workflows/release.yml

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ on:
66
# caches filled in a scope available to everyone
77
branches:
88
- master
9+
paths-ignore:
10+
- 'docs/**'
11+
- 'LICENCE'
12+
- 'CONTRIBUTION.md'
13+
- 'README.md'
914
tags:
1015
- 'v*'
1116

0 commit comments

Comments
 (0)