Skip to content

Commit

Permalink
ci: don't require changelog entries for docs and deps
Browse files Browse the repository at this point in the history
Pull-Request: #4670.
  • Loading branch information
thomaseizinger authored Oct 16, 2023
1 parent ce91c1c commit 09f8cb4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ jobs:
if: >
github.event_name == 'pull_request' &&
!startsWith(github.event.pull_request.title, 'chore') &&
!startsWith(github.event.pull_request.title, 'refactor')
!startsWith(github.event.pull_request.title, 'refactor') &&
!startsWith(github.event.pull_request.title, 'deps') &&
!startsWith(github.event.pull_request.title, 'docs')
run: |
git fetch origin master:master
./scripts/ensure-version-bump-and-changelog.sh
Expand Down

0 comments on commit 09f8cb4

Please sign in to comment.