Skip to content

Commit

Permalink
fix: pr title pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
prokopsimek committed Sep 21, 2023
1 parent 37afda6 commit 53fc22a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ inputs:
monorepo-tags:
description: 'add prefix to tags and branches, allowing multiple libraries to be released from the same repository'
default: 'false'
pull-request-title-pattern:
description: 'add title pattern to make release PR, defaults to using "chore${scope}: release${component} ${version}"'
# pull-request-title-pattern:
# description: 'add title pattern to make release PR, defaults to using "chore${scope}: release${component} ${version}"'
pull-request-header:
description: 'set release PR header, defaults to using ":robot: I have created a release *beep* *boop*"'
draft:
Expand Down Expand Up @@ -164,7 +164,8 @@ runs:
github-graphql-url: ${{ inputs.github-graphql-url }}
repo-url: ${{ inputs.repo-url }}
monorepo-tags: ${{ inputs.monorepo-tags }}
pull-request-title-pattern: ${{ inputs.pull-request-title-pattern }}
# pull-request-title-pattern: ${{ inputs.pull-request-title-pattern }}
pull-request-title-pattern: "chore(release): ${version}"
pull-request-header: ${{ inputs.pull-request-header }}
draft: ${{ inputs.draft }}
draft-pull-request: ${{ inputs.draft-pull-request }}
Expand Down

0 comments on commit 53fc22a

Please sign in to comment.