forked from emiliopedrollo/create-pull-request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
47 lines (45 loc) · 1.45 KB
/
action.yml
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
43
44
45
name: "Creates Pull Request"
description: "Creates a Pull Request"
runs:
using: node12
main: index.js
branding:
icon: git-pull-request
color: gray-dark
inputs:
token:
description: 'A token that can be used to authenticate within GitHub with content write access to your repo'
default: ${{ github.token }}
title:
description: 'The title of the Pull Request'
default: 'Auto generated Pull Request by action create-pull-request'
body:
description: 'The body of the pull request'
default: 'See Files changed for more details'
draft:
description: 'Create a draft pull request'
default: false
head:
description: 'The Pull Request head branch'
default: ${{ github.ref }}
base:
description: 'The Pull Request base branch'
default: 'master'
repository:
description: 'The owner and repository'
default: ${{ github.repository }}
labels:
description: 'A comma or newline separated list of labels'
assignees:
description: 'A comma or newline separated list of assignees'
reviewers:
description: 'A comma or newline separated list of reviewers'
team-reviewers:
description: >
A comma or newline separated list of GitHub teams to set as reviewers
Note: A `repo` scoped Personal Access Token (PAT) may be required
milestone:
description: 'The number of the milestone to associate with the pull request'
outputs:
pull-request-number:
description: 'The Pull Request number'