mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
18 lines
475 B
YAML
18 lines
475 B
YAML
name: Release notes
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
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
|