Skip to content

Commit 828cec1

Browse files
Copilotfriggeri
andauthored
Add paths-ignore filters to SDK test workflows (#271)
* Initial plan * Add paths-ignore filters to all SDK test workflows Co-authored-by: friggeri <106686+friggeri@users.noreply.github.com> * Remove .txt from paths-ignore to allow dependency files Co-authored-by: friggeri <106686+friggeri@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: friggeri <106686+friggeri@users.noreply.github.com>
1 parent a124990 commit 828cec1

4 files changed

Lines changed: 40 additions & 0 deletions

File tree

.github/workflows/dotnet-sdk-tests.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ on:
88
- 'nodejs/package.json'
99
- '.github/workflows/dotnet-sdk-tests.yml'
1010
- '.github/actions/setup-copilot/**'
11+
paths-ignore:
12+
- '**/*.md'
13+
- '**/LICENSE*'
14+
- '**/.gitignore'
15+
- '**/.editorconfig'
16+
- '**/*.png'
17+
- '**/*.jpg'
18+
- '**/*.jpeg'
19+
- '**/*.gif'
20+
- '**/*.svg'
1121
workflow_dispatch:
1222
merge_group:
1323

.github/workflows/go-sdk-tests.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ on:
88
- 'nodejs/package.json'
99
- '.github/workflows/go-sdk-tests.yml'
1010
- '.github/actions/setup-copilot/**'
11+
paths-ignore:
12+
- '**/*.md'
13+
- '**/LICENSE*'
14+
- '**/.gitignore'
15+
- '**/.editorconfig'
16+
- '**/*.png'
17+
- '**/*.jpg'
18+
- '**/*.jpeg'
19+
- '**/*.gif'
20+
- '**/*.svg'
1121
workflow_dispatch:
1222
merge_group:
1323

.github/workflows/nodejs-sdk-tests.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ on:
1010
- 'test/**'
1111
- '.github/workflows/nodejs-sdk-tests.yml'
1212
- '.github/actions/setup-copilot/**'
13+
paths-ignore:
14+
- '**/*.md'
15+
- '**/LICENSE*'
16+
- '**/.gitignore'
17+
- '**/.editorconfig'
18+
- '**/*.png'
19+
- '**/*.jpg'
20+
- '**/*.jpeg'
21+
- '**/*.gif'
22+
- '**/*.svg'
1323
workflow_dispatch:
1424
merge_group:
1525

.github/workflows/python-sdk-tests.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ on:
1111
- 'nodejs/package.json'
1212
- '.github/workflows/python-sdk-tests.yml'
1313
- '.github/actions/setup-copilot/**'
14+
paths-ignore:
15+
- '**/*.md'
16+
- '**/LICENSE*'
17+
- '**/.gitignore'
18+
- '**/.editorconfig'
19+
- '**/*.png'
20+
- '**/*.jpg'
21+
- '**/*.jpeg'
22+
- '**/*.gif'
23+
- '**/*.svg'
1424
workflow_dispatch:
1525
merge_group:
1626

0 commit comments

Comments
 (0)