mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 11:32:10 +08:00
19 lines
490 B
YAML
19 lines
490 B
YAML
# https://johanneskonings.dev/github/2021/02/28/github_automatic_releases_and-changelog/
|
|
# https://tiagomichaelsousa.dev/articles/stop-writing-your-changelogs-manually
|
|
name: Release Drafter
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
update_release_draft:
|
|
name: Release drafter
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Update Release Draft
|
|
uses: release-drafter/release-drafter@v5
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|