Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/update_files_for_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,11 @@ on:
workflow_dispatch:
inputs:
OLD_VERSION:
description: 'Enter old version'
# Show defaults as examples so user enters correct format.
default: '23.0.0.11'
description: 'Enter old version (what was just released)'
required: true
type: string
NEW_VERSION:
description: 'Enter new version'
default: '23.0.0.12'
description: 'Enter new version (pre-eGA release)'
required: true
type: string
BUILD_LABEL:
Expand Down Expand Up @@ -55,7 +52,7 @@ jobs:

- name: Create Pull Request
run: |
gh pr create -B vNext -H "${{ inputs.NEW_VERSION }}-release" -r mbroz2 -r leochr --title "Updates for the release of ${{ inputs.NEW_VERSION }}" --body "Created by Github Actions"
gh pr create -B vNext -H "${{ inputs.NEW_VERSION }}-release" -r leochr --title "Updates for the release of ${{ inputs.NEW_VERSION }}" --body "Created by Github Actions"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down