Skip to content

Commit

Permalink
Fix multiple branchs naming
Browse files Browse the repository at this point in the history
  • Loading branch information
carloscastrojumo committed May 10, 2021
1 parent 7f32b79 commit 09661c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export async function run(): Promise<void> {
core.info(`Cherry pick into branch ${inputs.branch}!`)

const githubSha = process.env.GITHUB_SHA
const prBranch = `cherry-pick-${githubSha}`
const prBranch = `cherry-pick-${inputs.branch}-${githubSha}`

// Configure the committer and author
core.startGroup('Configuring the committer and author')
Expand Down

0 comments on commit 09661c7

Please sign in to comment.