-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaction.yml
35 lines (29 loc) · 1.01 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
name: 'Combined Status Check'
description: 'Combine many status checks into one required check.'
author: 'Etsy'
inputs:
token:
description: GitHub Actions access token.
default: ${{ github.token }}
initial-delay-seconds:
description: The number of seconds to wait before examining status checks.
default: 10
interval-seconds:
desription: The number of seconds to wait in between examining status checks.
default: 2
timeout-seconds:
description: The maximum number of seconds to wait for all status checks to resolve.
default: 300
status-regex:
description: >
A regular expression used to filter statuses based on their `context` attribute. Statuses that do not match this
expression are ignored.
default: ^.*$
check-run-regex:
description: >
A regular expression used to filter check runs based on their `name` attribute. Check runs that to not match this
expression are ignored.
default: ^.*$
runs:
using: 'node16'
main: 'dist/index.js'