From 1ec3a06f2ed9120bb92f71e1d84737f0b931b73b Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Sun, 16 Oct 2022 12:02:06 +0200 Subject: [PATCH] fix: improve default pr body message --- README.md | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0466fe9..e47de80 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ All inputs are **optional**. If not set, sensible defaults will be used. | `base` | Sets the pull request base branch. | Defaults to the branch checked out in the workflow. | | `push-to-fork` | A fork of the checked-out parent repository to which the pull request branch will be pushed. e.g. `owner/repo-fork`. The pull request will be created to merge the fork's branch into the parent's base. See [push pull request branches to a fork](docs/concepts-guidelines.md#push-pull-request-branches-to-a-fork) for details. | | | `title` | The title of the pull request. | `Changes by create-pull-request action` | -| `body` | The body of the pull request. | `Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action` | +| `body` | The body of the pull request. | `Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action.` | | `labels` | A comma or newline-separated list of labels. | | | `assignees` | A comma or newline-separated list of assignees (GitHub usernames). | | | `reviewers` | A comma or newline-separated list of reviewers (GitHub usernames) to request a review from. | | diff --git a/action.yml b/action.yml index 4cb37f6..08f781f 100644 --- a/action.yml +++ b/action.yml @@ -53,7 +53,7 @@ inputs: default: 'Changes by create-pull-request action' body: description: 'The body of the pull request.' - default: 'Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action' + default: 'Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action.' labels: description: 'A comma or newline separated list of labels.' assignees: