Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: '🚀 Features'
labels:
- 'feature'
- 'enhancement'
- title: '🐛 Bug Fixes'
labels:
- 'fix'
- 'bugfix'
- 'bug'
- title: '📚 Documentation'
labels:
- 'documentation'
- 'docs'
- title: 'Maintenance'
labels:
- 'chore'
- 'maintenance'
- title: '⬆️ Dependencies'
labels:
- 'dependencies'
- 'deps'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&'
version-resolver:
major:
labels:
- 'major'
- 'breaking'
minor:
labels:
- 'minor'
- 'feature'
patch:
labels:
- 'patch'
- 'fix'
- 'bugfix'
default: patch
template: |
## What's Changed

$CHANGES

## Contributors

$CONTRIBUTORS
22 changes: 22 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release Drafter

on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]

permissions:
contents: read

jobs:
update_release_draft:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@vb1476f6e6eb133afa41ed8589daba6dc69b4d3f5

Check failure on line 20 in .github/workflows/release-drafter.yml

View workflow job for this annotation

GitHub Actions / Lint GitHub Actions

Ratchet - Unpinned Reference

.github/workflows/release-drafter.yml:20:15: The reference `release-drafter/release-drafter@vb1476f6e6eb133afa41ed8589daba6dc69b4d3f5` is unpinned. Either pin the reference to a SHA or mark the line with `ratchet:exclude`.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading