-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (31 loc) · 805 Bytes
/
action.yml
File metadata and controls
31 lines (31 loc) · 805 Bytes
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: 'Add Merged PR List'
description: 'Creates a list of merged PRs in the source branch that are not in the target branch'
inputs:
github-token:
description: Secret GitHub API token to use for making API requests
default: ${{ github.token }}
required: true
owner:
description: 'The owner of the repo'
required: true
repo:
description: 'The repo to check'
required: true
head:
description: 'The source branch to compare'
required: true
base:
description: 'The target branch to compare'
required: true
pr-number:
description: 'The number of opened pull request'
required: true
outputs:
pull-request-body:
description: Markdown with PR List
runs:
using: node16
main: dist/index.js
branding:
icon: git-pull-request
color: green