forked from carloscastrojumo/github-cherry-pick-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
42 lines (42 loc) · 1.52 KB
/
Copy pathaction.yml
File metadata and controls
42 lines (42 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: "GitHub cherry pick action"
description: "GitHub action for cherry pick commits from Pull Requests into Release branchs"
inputs:
token:
description: "GITHUB_TOKEN or a `repo` scoped Personal Access Token (PAT)"
default: ${{ github.token }}
required: false
committer:
description: >
The committer name and email address in the format `Display Name <email@address.com>`.
Defaults to the GitHub Actions bot user.
default: "GitHub <noreply@github.com>"
required: false
author:
description: >
The author name and email address in the format `Display Name <email@address.com>`.
Defaults to the user who triggered the workflow run.
default: "${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>"
required: false
branch:
description: "Name of the branch to merge the cherry pick"
required: true
labels:
description: "A comma or newline separated list of labels."
required: false
assignees:
description: "A comma or newline separated list of assignees (GitHub usernames)."
required: false
reviewers:
description: "A comma or newline separated list of reviewers (GitHub usernames) to request a review from."
required: false
team-reviewers:
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.
required: false
runs:
using: node12
main: dist/index.js
branding:
icon: 'git-pull-request'
color: 'orange'