Skip to content

Commit

Permalink
Restore v1.24 notes
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Nola <[email protected]>
  • Loading branch information
dereknola committed Nov 13, 2023
1 parent 4b482c7 commit 7149049
Show file tree
Hide file tree
Showing 3 changed files with 541 additions and 4 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Collect Release Notes
on:
workflow_dispatch

env:
MINORS: "v1.25 v1.26 v1.27 v1.28"
permissions:
contents: write
pull-requests: write
Expand All @@ -11,10 +13,13 @@ jobs:
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Generate release notes
- name: Remove old release notes
run: |
rm docs/release-notes/*.md
scripts/collect-all-release-notes.sh
for minor in $MINORS; do
rm docs/release-notes/$minor*.md
done
- name: Generate release notes
run: scripts/collect-all-release-notes.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Pull Request
Expand Down
Loading

0 comments on commit 7149049

Please sign in to comment.