-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
49 lines (39 loc) · 1.43 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: WIP Action
description: Sets a pull request commits with pending state if it finds specified terms in the pull request title or label.
author: bubkoo <[email protected]>
inputs:
GITHUB_TOKEN:
required: true
description: Your GitHub token for authentication.
setFailed:
required: false
description: Set action to failed when wip.
labels:
required: false
description: Match with PR labels. Comma separated and case insensitive labels.
keywords:
required: false
description: Match with PR title. Comma separated and case insensitive keywords.
context:
required: false
description: |
A string label to differentiate this status from the status of other systems.
This field is case-insensitive.
target_url:
required: false
description: |
The target URL to associate with this status. This URL will be linked from the GitHub UI to allow users to easily see the source of the status.
For example, if your continuous integration system is posting build status, you would want to provide the deep link for the build output for this specific SHA:
http://ci.example.com/user/repo/build/sha
wip_description:
required: false
description: A short description of the status.
ready_description:
required: false
description: A short description of the status.
runs:
using: node16
main: dist/index.js
branding:
icon: alert-triangle
color: yellow