generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 44
/
action.yml
26 lines (26 loc) · 938 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
name: 'Wait For Check'
description: 'Wait for another GitHub check to complete'
author: 'Fountainhead Technologies Ltd.'
branding:
icon: 'check-circle'
color: 'green'
inputs:
token:
description: 'The GitHub token to use for making API requests.'
required: true
checkName:
description: 'The name of the GitHub check to wait for. For example, `build` or `deploy`.'
required: true
ref:
description: 'The Git ref of the commit you want to poll for a passing check.'
repo:
description: 'The name of the GitHub repository you want to poll for a passing check.'
owner:
description: 'The owner of the GitHub repository you want to poll for a passing check.'
timeoutSeconds:
description: 'The number of seconds to wait for the check to complete.'
intervalSeconds:
description: 'The number of seconds to wait before each poll of the GitHub API.'
runs:
using: 'node20'
main: 'dist/index.js'