Skip to content

Commit

Permalink
update workflow settings
Browse files Browse the repository at this point in the history
  • Loading branch information
yuki-takei committed Aug 1, 2024
1 parent 280826a commit 26fde01
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/auto-labeling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
runs-on: ubuntu-latest

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

if: |
(!contains( github.event.pull_request.labels.*.name, 'flag/exclude-from-changelog' ) &&
!startsWith( github.head_ref, 'dependabot/' ))
(!contains( github.event.pull_request.labels.*.name, 'flag/exclude-from-changelog' )
&& !startsWith( github.head_ref, 'changeset-release/' )
&& !startsWith( github.head_ref, 'dependabot/' ))
steps:
- uses: amannn/action-semantic-pull-request@v5
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches-ignore:
- release/**
- rc/**
- changeset-release/**
paths:
- .github/workflows/ci-app.yml
- .eslint*
Expand Down

0 comments on commit 26fde01

Please sign in to comment.