mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-30 00:55:00 +08:00
Merge pull request #77 from meilisearch/release-drafter
Add release drafter file
This commit is contained in:
commit
23fae3328b
11
.github/release-draft-template.yml
vendored
Normal file
11
.github/release-draft-template.yml
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
name-template: 'v$RESOLVED_VERSION'
|
||||||
|
tag-template: 'v$RESOLVED_VERSION'
|
||||||
|
version-template: '0.21.0-alpha.$PATCH'
|
||||||
|
template: |
|
||||||
|
## Changes
|
||||||
|
|
||||||
|
$CHANGES
|
||||||
|
no-changes-template: 'Changes are coming soon 😎'
|
||||||
|
sort-direction: 'ascending'
|
||||||
|
version-resolver:
|
||||||
|
default: patch
|
16
.github/workflows/release-drafter.yml
vendored
Normal file
16
.github/workflows/release-drafter.yml
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
name: Release Drafter
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update_release_draft:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: release-drafter/release-drafter@v5
|
||||||
|
with:
|
||||||
|
config-name: release-draft-template-ll.yml
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.RELEASE_DRAFTER_TOKEN }}
|
Loading…
Reference in New Issue
Block a user