generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
41 lines (39 loc) · 1.15 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
name: Optional required workflows
description: >-
Configure required workflows in your repository. Use path filters. Leave your
GitHub org administrator alone.
author: [email protected]
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'check-circle'
color: 'green'
# Define your inputs here.
inputs:
token:
description: >-
Token to use to lookup workflow runs. Requires `actions: read`
permissions.
required: true
status-name:
description: >
The status name use for reporting. You should mark this as required.
required: true
must-succeed-if-run:
description: >
A multi-line string of the names of workflows that must succeed if a run
is observed.
required: true
retries:
description: >
The number of times to query for updated WorkflowRun statues if we don't
observe the conclusion of the run we're looking for before giving up.
required: false
default: '3'
delay:
description: >
The delay in milliseconds to wait between retries.
required: false
default: '100'
runs:
using: node20
main: dist/index.js