Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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: '$NEXT_PATCH_VERSION'
tag-template: 'v$NEXT_PATCH_VERSION'
prerelease: false
categories:
- title: 🚀 Improvements
labels:
- enhancement
- title: 🐛 Bug Fixes
labels:
- bug
- title: 📝 Documentation
labels:
- documentation
- title: 📦 Dependency updates
labels:
- dependencies
- title: 👻 Maintenance
labels:
- chore
- refactoring
exclude-labels:
- skip-changelog
# Exclude specific usernames from the generated $CONTRIBUTORS variable.
# https://github.com/release-drafter/release-drafter/tree/master#exclude-contributors
exclude-contributors:
- 'dependabot'
- 'dependabot[bot]'
template: |
**TODO: add a short description about the release content - important for url preview**
This new release focuses on .... **or something similar**
This new version brings improvements to ...

**TODO: review the contributors list (remove ALL bots and avoid duplicates)**
Thanks to all the contributors of this release 🌈: $CONTRIBUTORS

**TODO: use the right milestone id and ensure the version is the right one**
See [milestone $NEXT_PATCH_VERSION](https://github.com/$OWNER/$REPOSITORY/milestone/x?closed=1) to get the list of issues covered by this release.

**TODO: check previous and next tag in the "full changelog" link in the "What's changed section"**

# Highlights

**TODO: add screenshots and user oriented info**

# What's Changed

**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$NEXT_PATCH_VERSION

$CHANGES
16 changes: 16 additions & 0 deletions .github/workflows/pr-metadata-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Check Pull Request Metadata
on:
pull_request:
types:
- opened
- edited
- reopened
jobs:
pr-enforce-conventional-commits:
runs-on: ubuntu-22.04
steps:
- name: Check pull request title
uses: jef/conventional-commits-pr-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
comment: false # Post a comment in the pull request conversation with examples.