Skip to content

Commit 4f28d07

Browse files
committed
feat: Added ignore paths to GitHub Actions
1 parent c9095bf commit 4f28d07

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ name: Build and Publish
33
on:
44
push:
55
branches: [ master ]
6+
7+
paths-ignore:
8+
- '**/.md'
9+
- '**/.txt'
10+
- '.github/**'
611

712
jobs:
813
publish:

.github/workflows/validatepullrequest.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ name: Validate Pull Request
33
on:
44
pull_request:
55
branches: [ master ]
6+
7+
paths-ignore:
8+
- '**/.md'
9+
- '**/.txt'
10+
- '.github/**'
611

712
jobs:
813
build:

0 commit comments

Comments
 (0)