create-pull-request/action.yml

83 lines
3.2 KiB
YAML
Raw Normal View History

2021-08-24 22:57:49 -04:00
name: "Create Pull Request"
description: "Creates a pull request for changes to your repository in the actions workspace"
2019-11-09 17:24:47 +09:00
inputs:
token:
2021-08-24 22:57:49 -04:00
description: "GITHUB_TOKEN or a `repo` scoped Personal Access Token (PAT)"
2020-04-01 18:50:53 +09:00
default: ${{ github.token }}
2020-01-10 00:11:39 +09:00
path:
2020-07-19 15:09:44 +09:00
description: >
Relative path under $GITHUB_WORKSPACE to the repository.
Defaults to $GITHUB_WORKSPACE.
2019-11-09 17:24:47 +09:00
commit-message:
2021-08-24 22:57:49 -04:00
description: "The message to use when committing changes."
default: "[create-pull-request] automated change"
2019-12-27 14:40:08 +09:00
committer:
2020-07-19 15:09:44 +09:00
description: >
The committer name and email address in the format `Display Name <email@address.com>`.
Defaults to the GitHub Actions bot user.
2021-08-24 22:57:49 -04:00
default: "GitHub <noreply@github.com>"
2019-12-27 14:40:08 +09:00
author:
2020-07-19 15:09:44 +09:00
description: >
The author name and email address in the format `Display Name <email@address.com>`.
Defaults to the user who triggered the workflow run.
2021-08-24 22:57:49 -04:00
default: "${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>"
signoff:
2021-08-24 22:57:49 -04:00
description: "Add `Signed-off-by` line by the committer at the end of the commit log message."
default: false
2020-07-19 15:09:44 +09:00
branch:
2021-08-24 22:57:49 -04:00
description: "The pull request branch name."
default: "create-pull-request/patch"
2020-09-06 10:21:35 +09:00
delete-branch:
description: >
Delete the `branch` when closing pull requests, and when undeleted after merging.
Recommend `true`.
default: false
2020-07-20 19:14:42 +09:00
branch-suffix:
2021-08-24 22:57:49 -04:00
description: "The branch suffix type when using the alternative branching strategy."
2020-07-19 15:09:44 +09:00
base:
description: >
The pull request base branch.
Defaults to the branch checked out in the workflow.
push-to-fork:
description: >
A fork of the checked out parent repository to which the pull request branch will be pushed.
2020-07-19 17:01:54 +09:00
e.g. `owner/repo-fork`.
2020-07-19 15:09:44 +09:00
The pull request will be created to merge the fork's branch into the parent's base.
2019-11-09 17:24:47 +09:00
title:
2021-08-24 22:57:49 -04:00
description: "The title of the pull request."
default: "Changes by create-pull-request action"
2019-11-09 17:24:47 +09:00
body:
2021-08-24 22:57:49 -04:00
description: "The body of the pull request."
default: "Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action"
2019-11-09 17:24:47 +09:00
labels:
2021-08-24 22:57:49 -04:00
description: "A comma or newline separated list of labels to add."
remove-labels:
description: "If true, remove all existing labels."
default: false
2019-11-09 17:24:47 +09:00
assignees:
2021-08-24 22:57:49 -04:00
description: "A comma or newline separated list of assignees (GitHub usernames)."
2019-11-09 17:24:47 +09:00
reviewers:
2021-08-24 22:57:49 -04:00
description: "A comma or newline separated list of reviewers (GitHub usernames) to request a review from."
2019-11-09 17:24:47 +09:00
team-reviewers:
2020-07-19 17:01:54 +09:00
description: >
A comma or newline separated list of GitHub teams to request a review from.
Note that a `repo` scoped Personal Access Token (PAT) may be required.
2019-11-09 17:24:47 +09:00
milestone:
2021-08-24 22:57:49 -04:00
description: "The number of the milestone to associate the pull request with."
2020-05-17 17:47:54 +09:00
draft:
2021-08-24 22:57:49 -04:00
description: "Create a draft pull request"
2020-07-19 15:09:44 +09:00
default: false
2019-11-10 13:07:11 +09:00
outputs:
2020-05-10 18:06:32 +09:00
pull-request-number:
2021-08-24 22:57:49 -04:00
description: "The pull request number"
2021-08-23 12:51:26 +09:00
pull-request-url:
2021-08-24 22:57:49 -04:00
description: "The URL of the pull request."
2021-08-23 12:51:26 +09:00
pull-request-operation:
2021-08-24 22:57:49 -04:00
description: "The pull request operation performed by the action, `created`, `updated` or `closed`."
2019-10-02 19:20:07 +09:00
runs:
2021-08-24 22:57:49 -04:00
using: "node12"
main: "dist/index.js"
2019-10-02 19:20:07 +09:00
branding:
2021-08-24 22:57:49 -04:00
icon: "git-pull-request"
color: "gray-dark"