Skip to content

Commit

Permalink
Skip changelog action for release PR (#780)
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Gerstmayr <[email protected]>
  • Loading branch information
andreasgerstmayr authored Feb 5, 2024
1 parent 724740d commit 59e1ae6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ concurrency:
jobs:
changelog:
runs-on: ubuntu-22.04
if: ${{ !contains(github.event.pull_request.labels.*.name, 'dependencies') && !contains(github.event.pull_request.labels.*.name, 'Skip Changelog') && !contains(github.event.pull_request.title, '[chore]')}}
if: |
!contains(github.event.pull_request.labels.*.name, 'dependencies') &&
!contains(github.event.pull_request.labels.*.name, 'Skip Changelog') &&
!contains(github.event.pull_request.title, '[chore]') &&
!contains(github.event.pull_request.title, 'Prepare release')
steps:
- name: Checkout Repo
Expand Down

0 comments on commit 59e1ae6

Please sign in to comment.