Skip to content

Commit 73389e5

Browse files
bjoernbethgeclaude
andauthored
Add path filters to skip builds on documentation-only changes (#2)
Added paths-ignore filters to workflow to skip CI runs when only documentation files are changed. Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 9813ed0 commit 73389e5

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/MainDistributionPipeline.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
name: Main Extension Distribution Pipeline
22
on:
33
push:
4+
paths-ignore:
5+
- '**.md'
6+
- 'doc/**'
7+
- 'docs/**'
8+
- 'LICENSE'
9+
- '.gitignore'
10+
- '**.txt'
411
pull_request:
12+
paths-ignore:
13+
- '**.md'
14+
- 'doc/**'
15+
- 'docs/**'
16+
- 'LICENSE'
17+
- '.gitignore'
18+
- '**.txt'
519
workflow_dispatch:
620
concurrency:
721
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{

0 commit comments

Comments
 (0)