generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
35 lines (35 loc) · 915 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
32
33
34
35
name: 'Wait For'
description: 'Wait for checks on a ref to complete successfully'
author: 'Replicated'
inputs:
token:
description: 'GitHub token'
required: false
default: ${{ github.token }}
ref:
description: 'The ref to wait for'
required: false
default: ${{ github.ref }}
timeout:
description: 'Timeout in seconds'
required: false
default: '600'
interval:
description: 'Polling interval in seconds'
required: false
default: '10'
check-name:
description: 'Check name to wait for. Overrids check-regexp if both are set'
required: false
default: ''
check-regexp:
description: 'Check name regexp to wait for'
required: false
default: ''
ok-conclusions:
description: 'The job conclusions accepted as successful, comma separated'
required: false
default: 'success,skipped'
runs:
using: 'node16'
main: 'dist/index.js'