Skip to content

Commit

Permalink
Sign and date PR
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Nola <[email protected]>
  • Loading branch information
dereknola committed Jan 2, 2024
1 parent f55c8f0 commit e94fd51
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Remove old release notes
run: |
for minor in $MINORS; do
Expand All @@ -22,10 +22,14 @@ jobs:
run: scripts/collect-all-release-notes.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get current month and year
id: date
run: echo "::set-output name=month_year::$(date +'%B %Y')"
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
commit-message: update release-notes/v1.XX.X.md
title: Update Release Notes
title: Update Release Notes ${{ steps.date.outputs.month_year }}
body: Automated release notes update
branch: update-release-notes
branch: update-release-notes
signoff: true

0 comments on commit e94fd51

Please sign in to comment.