forked from WyriHaximus/github-action-wait-for-status
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
23 lines (23 loc) · 686 Bytes
/
action.yml
File metadata and controls
23 lines (23 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: 'Wait for commit statuses'
description: 'Wait for commit statuses to be either successful or failed'
branding:
icon: 'clock'
color: 'orange'
inputs:
ignoreActions:
description: 'CSV of action names to ignore. Note that these names are the human readable names use as status on commits, and show up as status checks on PRs.'
required: true
checkInterval:
description: 'Time between checks (in seconds)'
required: false
default: 10
waitForCheck:
description: 'Whether to wait for a check if none are present'
required: false
default: ""
outputs:
status:
description: 'Success or failure'
runs:
using: 'docker'
image: 'Dockerfile'