Skip to content

Commit

Permalink
Fix pull body default value
Browse files Browse the repository at this point in the history
  • Loading branch information
egorio committed Oct 28, 2022
1 parent 0ed2ab7 commit d3cc347
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,15 @@ inputs:
required: false
pull-request-body:
description: 'Pull Request body (placeholders available: {summary}, {fixedItems}, {todoItems})'
default: '## Summary\n{summary}\n\n##Fixed\n{fixedItems}\n\n##To do\n{todoItems}'
default: |
## Summary
{summary}
## Fixed
{fixedItems}
## To Do
{todoItems}
required: false

runs:
Expand Down

0 comments on commit d3cc347

Please sign in to comment.