1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-05 05:25:26 +02:00

feat: Automate release drafting (#4147)

This commit is contained in:
boc-the-git 2024-09-04 08:08:39 +10:00 committed by GitHub
parent 4734fae891
commit c2fb4d3fa7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 81 additions and 0 deletions

21
.github/workflows/release-drafter.yml vendored Normal file
View file

@ -0,0 +1,21 @@
---
name: Release Drafter
on:
push:
branches:
- mealie-next
workflow_dispatch:
jobs:
update_release_draft:
permissions:
# write permission is required to create a github release
contents: write
name: ✏️ Draft release
runs-on: ubuntu-latest
steps:
- name: 🚀 Run Release Drafter
uses: release-drafter/release-drafter@v6.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}