forked from actions-ecosystem/action-get-merged-pull-request
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
25 lines (25 loc) · 859 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
name: Actions Ecosystem Action Get Merged Pull Request
description: Get the pull request merged with base branch.
author: Actions Ecosystem
inputs:
github_token:
description: A GitHub token.
required: true
outputs:
title:
description: The title of the pull request.
body:
description: The body of the pull request.
headBranch:
description: The name of branch that commits were merged from.
baseBranch:
description: The name of branch that commits were merged into.
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.
runs:
using: node16
main: dist/index.js