Skip to content

Commit

Permalink
allowing branch specification
Browse files Browse the repository at this point in the history
  • Loading branch information
amontanez24 committed Jun 10, 2024
1 parent 54f010d commit 92af29b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release_notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@ name: Release Notes Generator
on:
workflow_dispatch:
inputs:
branch:
description: 'Branch to merge release notes into.'
required: true
default: 'main'
version:
description:
'Version to use for the release. Must be in format: X.Y.Z.'
date:
description:
'Date of the release. Must be in format YYYY_MM_DD.'
'Date of the release. Must be in format YYYY-MM-DD.'

jobs:
releasenotesgeneration:
Expand Down Expand Up @@ -45,4 +49,4 @@ jobs:
body: "This is an auto-generated PR to update the release notes."
branch: release-notes
branch-suffix: short-commit-hash
base: main
base: ${{ inputs.branch }}

0 comments on commit 92af29b

Please sign in to comment.