mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-21 21:15:13 +00:00
22 lines
388 B
YAML
22 lines
388 B
YAML
name: Release changelog
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
|
|
jobs:
|
|
changelog:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: master
|
|
|
|
- uses: rhysd/changelog-from-release/action@v3
|
|
with:
|
|
file: CHANGELOG.md
|
|
pull_request: true
|
|
github_token: ${{ secrets.GH_TOKEN }}
|