-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bruno Besson
committed
Feb 19, 2024
1 parent
93feb97
commit b5f8b6a
Showing
3 changed files
with
56 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
changelog: | ||
categories: | ||
- title: 🚨 Breaking changes | ||
labels: | ||
- backwards-incompatible | ||
- breaking | ||
- title: ✨ New features and enhancements | ||
labels: | ||
- enhancement | ||
- title: 🐞 Fixed bugs | ||
labels: | ||
- bug | ||
- title: ⚠️ Deprecated | ||
labels: | ||
- deprecated | ||
- title: ⛔ Removed | ||
labels: | ||
- removed | ||
- title: 💬 Translations | ||
labels: | ||
- i18n | ||
- title: 📚 Documentation | ||
labels: | ||
- doc | ||
- title: 🏗 Chores | ||
labels: | ||
- chore | ||
- dependency | ||
- dependencies | ||
- security | ||
- dependabot | ||
- title: Other changes | ||
labels: | ||
- '*' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v[1-9]+.[0-9]+.[0-9]+' | ||
|
||
jobs: | ||
create-release: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Create or update release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
generate_release_notes: true | ||
token: ${{ secrets.GITHUB_TOKEN }} |