Skip to content

Commit

Permalink
Make bump-version workflow base branch name a parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
jayz22 authored and graydon committed Dec 1, 2023
1 parent b220780 commit ab29800
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@ on:
version:
description: 'Version to bump to'
required: true
base:
description: 'Name of branch to open PR against (e.g. soroban-wasmi-v0.31.1)'
required: true

jobs:

bump-version:
uses: stellar/actions/.github/workflows/rust-bump-version.yml@main
with:
version: ${{ inputs.version }}
base: soroban-wasmi-v0.31-soroban
base: ${{ inputs.base }}

0 comments on commit ab29800

Please sign in to comment.