Skip to content

Commit

Permalink
Force specifying release branch (#33884)
Browse files Browse the repository at this point in the history
  • Loading branch information
damccorm authored Feb 5, 2025
1 parent 1af2cb0 commit 1ae6fc4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/choose_rc_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ on:
RELEASE:
description: Beam version of current release (e.g. 2.XX.0)
required: true
RELEASE_BRANCH:
description: Current release branch (e.g. release-2.XX)
required: true
RC:
description: Integer RC version for the release (e.g. 3 for RC3)
required: true
Expand Down Expand Up @@ -57,7 +60,7 @@ jobs:
- name: Check out code
uses: actions/checkout@v4
with:
ref: release-${{ github.event.inputs.RELEASE }}
ref: release-${{ github.event.inputs.RELEASE_BRANCH }}
- name: Set git config
run: |
git config user.name $GITHUB_ACTOR
Expand Down

0 comments on commit 1ae6fc4

Please sign in to comment.