mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
See https://github.com/actualbudget/docs/pull/129 for more details. If this is accepted, I’ll fill in release notes for the PRs that have been submitted since the last release and submit a corresponding PR to `actual-server`. --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
18 lines
354 B
YAML
18 lines
354 B
YAML
name: Generate Release Notes
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- release/*
|
|
|
|
jobs:
|
|
generate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Generate release notes
|
|
uses: actualbudget/actions/release-notes/generate@main
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|