Skip to content

Commit d8e3914

Browse files
authored
Add paths-ignore for push and pull_request events (#7)
Ignore specified paths for push and pull request events.
1 parent 74d6626 commit d8e3914

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/docker-publish.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,18 @@ name: Build and Push Docker Image
33
on:
44
push:
55
branches: [ main ]
6+
paths-ignore:
7+
- 'brokers/**'
8+
- 'README.md'
9+
- '.gitignore'
10+
611
pull_request:
712
branches: [ main ]
13+
paths-ignore:
14+
- 'brokers/**'
15+
- 'README.md'
16+
- '.gitignore'
17+
818
release:
919
types: [ published ]
1020
workflow_dispatch:

0 commit comments

Comments
 (0)