Skip to content

Commit fe47e9d

Browse files
committed
Update GitHub Actions workflows to ignore documentation and markdown files
- Added paths-ignore settings to the Playwright and Test workflows to exclude changes in documentation and markdown files from triggering workflows. - This change helps to reduce unnecessary workflow runs when documentation files are updated.
1 parent 174a280 commit fe47e9d

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.github/workflows/playwright.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,19 @@ name: Playwright Tests
22
on:
33
push:
44
branches: [ main, master ]
5+
paths-ignore:
6+
- 'apps/docs/**'
7+
- '*.md'
8+
- 'README.md'
9+
- 'CHANGELOG.md'
10+
- 'LICENSE'
511
pull_request:
12+
paths-ignore:
13+
- 'apps/docs/**'
14+
- '*.md'
15+
- 'README.md'
16+
- 'CHANGELOG.md'
17+
- 'LICENSE'
618
branches: [ main, master ]
719

820
jobs:

.github/workflows/test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,20 @@ name: Test and Lint
22

33
on:
44
pull_request:
5+
paths-ignore:
6+
- 'apps/docs/**'
7+
- '*.md'
8+
- 'README.md'
9+
- 'CHANGELOG.md'
10+
- 'LICENSE'
511
branches: [ main, master ]
612
push:
13+
paths-ignore:
14+
- 'apps/docs/**'
15+
- '*.md'
16+
- 'README.md'
17+
- 'CHANGELOG.md'
18+
- 'LICENSE'
719
branches: [ main, master ]
820
tags:
921
- 'v*'

0 commit comments

Comments
 (0)