Skip to content

Commit 26fde01

Browse files
committed
update workflow settings
1 parent 280826a commit 26fde01

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/auto-labeling.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
if: |
23-
!contains(github.event.pull_request.labels.*.name, 'flag/exclude-from-changelog')
23+
(!contains( github.event.pull_request.labels.*.name, 'flag/exclude-from-changelog' )
24+
&& !startsWith( github.head_ref, 'changeset-release/' ))
2425
2526
steps:
2627
- uses: release-drafter/release-drafter@v5
@@ -33,8 +34,9 @@ jobs:
3334
runs-on: ubuntu-latest
3435

3536
if: |
36-
(!contains( github.event.pull_request.labels.*.name, 'flag/exclude-from-changelog' ) &&
37-
!startsWith( github.head_ref, 'dependabot/' ))
37+
(!contains( github.event.pull_request.labels.*.name, 'flag/exclude-from-changelog' )
38+
&& !startsWith( github.head_ref, 'changeset-release/' )
39+
&& !startsWith( github.head_ref, 'dependabot/' ))
3840
3941
steps:
4042
- uses: amannn/action-semantic-pull-request@v5

.github/workflows/ci-app.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches-ignore:
66
- release/**
77
- rc/**
8+
- changeset-release/**
89
paths:
910
- .github/workflows/ci-app.yml
1011
- .eslint*

0 commit comments

Comments
 (0)