forked from getsentry/action-get-dependent-pr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
31 lines (31 loc) · 857 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: 'Get Dependent Pull Request'
description: 'This checks current PR body for a dependent PR'
author: 'Sentry'
inputs:
appId:
required: true
description: GitHub App ID
privateKey:
required: true
description: GitHub App private key
textPattern:
required: false
description: The regex pattern to use against the referencer, note this is passed to RegExp()
patternFlags:
required: false
description: The regex flags to use for `textPattern`
repo:
required: false
description: The exact owner/repo to match to
outputs:
sha:
description: The HEAD SHA for the dependent pull request
branch:
description: The branch of the pull request
number:
description: The pull request number
pullRequest:
description: Stringified pull request object
runs:
using: 'node12'
main: 'dist/index.js'