Skip to content

Commit

Permalink
Add support for automatically generating release notes (actualbudget#746
Browse files Browse the repository at this point in the history
)

See actualbudget/docs#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>
  • Loading branch information
j-f1 and github-actions[bot] committed Mar 14, 2023
1 parent afba339 commit 5570f01
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1 @@
<!-- Thank you for submitting a pull request! Make sure to follow the instructions to write release notes for your PR — it should only take a minute or two: https://github.com/actualbudget/docs#writing-good-release-notes -->
14 changes: 14 additions & 0 deletions .github/workflows/check-release-notes.yml
@@ -0,0 +1,14 @@
name: Check release notes

on:
pull_request:
branches: '*'

jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check release notes
uses: actualbudget/actions/release-notes/check@main
17 changes: 17 additions & 0 deletions .github/workflows/generate-release-notes.yml
@@ -0,0 +1,17 @@
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 }}
6 changes: 6 additions & 0 deletions upcoming-release-notes/746.md
@@ -0,0 +1,6 @@
---
category: Maintenance
authors: [j-f1]
---

Add support for automatically generating release notes
6 changes: 6 additions & 0 deletions upcoming-release-notes/750.md
@@ -0,0 +1,6 @@
---
category: Maintenance
authors: [j-f1]
---

Reduce JavaScript bundle size by 1MB
6 changes: 6 additions & 0 deletions upcoming-release-notes/754.md
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [waseem-h]
---

(Nordigen) Use bookingDate as fallback during sync
1 change: 1 addition & 0 deletions upcoming-release-notes/README.md
@@ -0,0 +1 @@
See the [Writing Good Release Notes](https://github.com/actualbudget/docs#writing-good-release-notes) section of the README for the documentation repo for more information on how to create a release notes file here.

0 comments on commit 5570f01

Please sign in to comment.