-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
59 lines (58 loc) · 1.83 KB
/
Copy pathaction.yml
File metadata and controls
59 lines (58 loc) · 1.83 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: 'Create Pull Request'
description: 'Create a pull request from local changes.'
inputs:
github-token:
required: true
description: >-
The GitHub token required to perform actions such as pushing commits and
creating pull requests.
base:
required: false
description: >-
The base branch to create the pull request against. Defaults to the
current `github.ref` context if not set. The git reference for the
base must exists locally (i.e. "fetched").
branch-name:
required: true
description: >-
The name of the new branch to be created by this action.
commit-message:
required: true
description: >-
The commit message for the new commit created by this action.
title:
required: true
description: >-
The title of the pull request that will be created.
body:
required: false
description: >-
The body content of the pull request. This can provide additional
information or context for the changes being made.
upsert:
required: false
default: 'false'
description: >-
When enabled, updates the existing branch and pull request instead of
failing.
ignore-no-changes:
required: false
default: 'false'
description: >-
When enabled, the action will ignore the absence of local changes
and exit without raising an error.
auto-merge:
required: false
default: 'false'
description: >-
When enabled, the action will enable auto-merge using the squash merge
method for the pull request and delete the branch after merge.
repository:
required: false
description: >-
The repository to create the branch and pull request on, for example
`canonical/create-pull-request`. Defaults to the current repository if
not set.
runs:
using: 'node24'
main: 'dist/index.js'