Skip to content

Commit 78109d5

Browse files
authored
change build to not exclude changes to itself (#2637)
* Update pull_request.yml * Update build.yml
1 parent 2494fbd commit 78109d5

File tree

2 files changed

+22
-14
lines changed

2 files changed

+22
-14
lines changed

.github/workflows/build.yml

+12-7
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,18 @@ name: Intersect (main)
33
on:
44
push:
55
branches: [ "main" ]
6-
paths-ignore:
7-
- '.github/**'
8-
- 'Documentation/**'
9-
- '.gitignore'
10-
- '*.DotSettings'
11-
- '*.json'
12-
- '*.md'
6+
paths:
7+
- 'Framework/**'
8+
- 'Intersect*/**'
9+
- '.github/bundles/**'
10+
- '.github/workflows/build.yml'
11+
- '!Intersect.Tests*/**'
12+
- '!launchSettings.json'
13+
- '!*.md'
14+
- '!Examples/**'
15+
- '!Documentation/**'
16+
- '!.git*'
17+
- '!*.DotSettings'
1318
workflow_dispatch:
1419
inputs:
1520
forceBuild:

.github/workflows/pull_request.yml

+10-7
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@ name: Pull Requests
33
on:
44
pull_request:
55
branches: [ "main" ]
6-
paths-ignore:
7-
- '.github/**'
8-
- 'Documentation/**'
9-
- '.gitignore'
10-
- '*.DotSettings'
11-
- '*.json'
12-
- '*.md'
6+
paths:
7+
- 'Framework/**'
8+
- 'Intersect*/**'
9+
- '!Intersect.Tests*/**'
10+
- '!launchSettings.json'
11+
- '!*.md'
12+
- '!Examples/**'
13+
- '!Documentation/**'
14+
- '!.git*'
15+
- '!*.DotSettings'
1316
workflow_dispatch:
1417
inputs:
1518
forceBuild:

0 commit comments

Comments
 (0)