Skip to content
This repository was archived by the owner on Jul 16, 2023. It is now read-only.

Commit 6bb140d

Browse files
committed
build: skip validate changelog on push at master
1 parent 35bb607 commit 6bb140d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/package_analyze.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ on:
44
pull_request:
55
branches:
66
- master
7+
paths:
8+
- "bin/**"
9+
- "example/**"
10+
- "lib/**"
11+
- "tool/**"
12+
- "tools/**"
13+
- ".github/workflows/package_analyze.yaml"
714
push:
815
branches:
916
- master
@@ -21,7 +28,8 @@ jobs:
2128

2229
steps:
2330
- name: Validate semantic changelog update
24-
uses: GetStream/verify-semantic-changelog-update@main
31+
if: ${{ github.event_name == 'pull_request' }}
32+
uses: GetStream/verify-semantic-changelog-update@v1.0.0
2533
env:
2634
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2735

0 commit comments

Comments
 (0)