forked from actions-ecosystem/action-get-merged-pull-request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
28 lines (28 loc) · 898 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
name: Get merged pull request
description: Get the pull request merged with base branch.
author: randilfernando<[email protected]>
inputs:
github_token:
description: A GitHub token.
required: true
commit_sha:
description: Targeted commit sha.
required: false
outputs:
title:
description: The title of the pull request.
body:
description: The body of the pull request.
number:
description: The number of the pull request.
labels:
description: The list of labels for the pull request. Separated with line breaks if there're multiple labels.
assignees:
description: The list of assignees for the pull request. Separated with line breaks if there're multiple assignees.
base_branch:
description: The base branch of pull request
head_branch:
description: The head branch of pull request
runs:
using: node12
main: dist/index.js