mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-09 03:32:54 -05:00
Migrate to combined release notes action from main repo (#208)
This commit is contained in:
16
.github/workflows/check-release-notes.yml
vendored
16
.github/workflows/check-release-notes.yml
vendored
@@ -1,16 +0,0 @@
|
||||
name: Check release notes
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- '*'
|
||||
- '!release/*'
|
||||
|
||||
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
.github/workflows/generate-release-notes.yml
vendored
17
.github/workflows/generate-release-notes.yml
vendored
@@ -1,17 +0,0 @@
|
||||
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 }}
|
||||
18
.github/workflows/release-notes.yml
vendored
Normal file
18
.github/workflows/release-notes.yml
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
6
upcoming-release-notes/208.md
Normal file
6
upcoming-release-notes/208.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Maintenance
|
||||
authors: [j-f1]
|
||||
---
|
||||
|
||||
Migrate to the combined release notes action from the main repo
|
||||
Reference in New Issue
Block a user