generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
44 lines (36 loc) · 1.06 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
42
43
44
name: 'Await Workflow'
description:
'Wait for a specific workflow to complete before proceeding with the next
steps in your workflow.'
author: 'Johannes Vedder'
branding:
icon: 'pause'
color: 'yellow'
inputs:
workflowId:
description: 'The workflow id or filename of the workflow to wait on'
required: true
repository:
description:
'The repository in the format owner/repo to fetch the workflow runs
(default is the current repository)'
retryIntervalSeconds:
description: 'Retry interval in seconds'
default: '60'
timeoutSeconds:
description: 'Timeout duration in seconds'
default: '600'
initialWaitSeconds:
description: 'Wait time until GitHub workflows are initialized in seconds'
default: '10'
successStatuses:
description:
'Comma-separated list of status values that indicate a successful workflow
run'
default: 'success'
github-token:
description: 'The GitHub token used to post comments on pull requests'
default: ${{ github.token }}
runs:
using: node20
main: dist/index.js