mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-28 18:40:34 -05:00
Web: https://github.com/actualbudget/actual/pull/1087 Server: https://github.com/actualbudget/actual-server/pull/207 Docs: https://github.com/actualbudget/docs/pull/179 --------- Co-authored-by: Jed Fox <git@jedfox.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
19 lines
493 B
YAML
19 lines
493 B
YAML
name: Release notes
|
|
|
|
on:
|
|
pull_request:
|
|
branches: '*'
|
|
|
|
jobs:
|
|
release-notes:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Check release notes
|
|
if: startsWith(github.head_ref, 'release/') == false
|
|
uses: actualbudget/actions/release-notes/check@main
|
|
- name: Generate release notes
|
|
if: startsWith(github.head_ref, 'release/') == true
|
|
uses: actualbudget/actions/release-notes/generate@main
|