Skip to content

Commit

Permalink
fix: enable release-drafter (#67)
Browse files Browse the repository at this point in the history
Signed-off-by: gardar <[email protected]>
  • Loading branch information
gardar authored Jun 17, 2024
1 parent 0a63dbb commit 5ad404b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: draft-release
on:
pull_request_target:
types:
- closed

jobs:
update_release_draft:
if: |
github.event.pull_request.merged &&
!contains(github.event.pull_request.labels.*.name, 'skip_changelog')
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 5ad404b

Please sign in to comment.