Skip to content

Commit

Permalink
feat: Automate release drafter
Browse files Browse the repository at this point in the history
  • Loading branch information
vinanrra committed Dec 13, 2023
1 parent 404bebf commit c754079
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 3 deletions.
70 changes: 68 additions & 2 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,70 @@
name-template: 'v$RESOLVED_VERSION 🌈'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: '⚠ BREAKING CHANGES'
labels:
- 'break'
- title: '🚀 Features'
labels:
- 'feature'
- 'enhancement'
- title: '🔧 Changes'
labels:
- 'change'
- title: '🗑️ Removes'
labels:
- 'remove'
- title: '🐛 Bug Fixes'
labels:
- 'fix'
- 'bugfix'
- 'bug'
- title: '🧰 Maintenance'
label: 'chore'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
version-resolver:
major:
labels:
- 'major'
minor:
labels:
- 'minor'
patch:
labels:
- 'patch'
default: patch
autolabeler:
- label: 'enhancement'
branch:
- '/feature\/.+/'
- '/feat\/.+/'
body:
- '/JIRA-[0-9]{1,4}/'
- label: 'change'
branch:
- '/change\/.+/'
- label: 'remove'
branch:
- '/remove\/.+/'
- '/delete\/.+/'
- label: 'chore'
files:
- '*.md'
branch:
- '/docs{0,1}\/.+/'
- '/chore\/.+/'
- label: 'bug'
branch:
- '/fix\/.+/'
title:
- '/fix/i'
- '/fixex/i'
- label: 'break'
branch:
- '/break\/.+/'

template: |
## What’s Changed
## Changes
$CHANGES
$CHANGES
23 changes: 22 additions & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,33 @@ on:
pull_request:
# Only following types are handled by the action, but one can default to all as well
types: [opened, reopened, synchronize]
# pull_request_target event is required for autolabeler to support PRs from forks
# pull_request_target:
# types: [opened, reopened, synchronize]

permissions:
contents: read

jobs:
update_release_draft:
permissions:
# write permission is required to create a github release
contents: write
# write permission is required for autolabeler
# otherwise, read permission is required at least
pull-requests: write
runs-on: ubuntu-latest
steps:
# (Optional) GitHub Enterprise requires GHE_HOST variable set
#- name: Set GHE_HOST
# run: |
# echo "GHE_HOST=${GITHUB_SERVER_URL##https:\/\/}" >> $GITHUB_ENV

# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v5
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
# with:
# config-name: my-config.yml
# disable-autolabeler: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }}

0 comments on commit c754079

Please sign in to comment.