-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
31 lines (31 loc) · 910 Bytes
/
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
name: 'Create Pull Request'
description: 'This action creates and attemps to automatically merge pull requests'
inputs:
title:
description: Title of the pull request
required: true
repo:
description: Repository name with owner. (owner/repo)
default: ${{ github.repository }}
head:
description: Head branch to merge.
default: ${{ github.ref_name }}
base:
description: Base branch to merge into.
default: ${{ github.event.repository.default_branch }}
labels:
description: A comma seperated list of labels to add to the pull request.
automerge:
description: True if the pull request should be merged automatically.
default: true
token:
description: GitHub access token.
required: true
outputs:
number:
description: Number of the pull request.
url:
description: Url of the pull request.
runs:
using: 'node20'
main: 'dist/index.js'