-
Notifications
You must be signed in to change notification settings - Fork 22
/
action.yml
48 lines (48 loc) · 1.44 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
46
47
48
name: 'Just Create A Pull Request'
description: 'Does what it says on the tin, create a pull request, easy and simple.'
author: 'Thomas Eizinger'
branding:
icon: git-pull-request
color: white
inputs:
github_token:
description: 'A GitHub API token'
required: true
head:
description: 'The head ref that should be pulled into base.'
required: true
title:
description: 'The title of the pull request.'
required: true
base:
description: 'The base branch for the pull request. Defaults to master.'
required: false
draft:
description: 'Whether this should be a draft PR.'
required: false
body:
description: 'The body of the pull request.'
required: false
assignees:
description: 'A comma-separated list of GitHub logins that should be assigned to this PR.'
required: false
reviewers:
description: 'A comma-separated list of GitHub logins that should review this PR.'
required: false
team_reviewers:
description: 'A comma-separated list of GitHub team slugs that should review this PR.'
required: false
labels:
description: 'A comma-separated list of labels to be set on this PR.'
required: false
repository:
description: 'The repository in which the PR shall be created.'
required: false
outputs:
number:
description: 'Pull Request number'
html_url:
description: 'URL that Pull Request may be reviewed at'
runs:
using: 'node20'
main: 'dist/index.js'