Skip to content

Commit

Permalink
ci: Add release drafter workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dermotduffy committed Nov 6, 2024
1 parent d732be2 commit 9042ff3
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
categories:
- title: ':boom: Breaking Changes'
label: 'breaking'
- title: ':rocket: Features'
label: 'feature'
- title: ':bug: Fixes'
label: 'bug'
- title: ':racehorse: Performance'
label: 'performance'
- title: ':rotating_light: Testing'
label: 'testing'
- title: ':construction_worker: Continuous Integration'
label: 'ci'
- title: ':books: Documentation'
label: 'documentation'
- title: ':hammer: Refactoring'
label: 'refactoring'
- title: ':wrench: Chore'
label: 'chore'

template: |
## Changes
$CHANGES
16 changes: 16 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: Draft a release note

on:
push:
workflow_dispatch:

jobs:
draft_release:
name: Release Drafter
runs-on: ubuntu-latest
steps:
- name: Run release-drafter
uses: release-drafter/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 9042ff3

Please sign in to comment.