generated from int128/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yaml
48 lines (45 loc) · 1.28 KB
/
action.yaml
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
45
46
47
48
name: wait-for-workflows-action
description: Wait for workflow runs
inputs:
filter-workflow-names:
description: Filter workflows by name patterns (multiline)
required: false
exclude-workflow-names:
description: Exclude workflows by name patterns (multiline)
required: false
filter-workflow-events:
description: Filter workflows by events (multiline)
required: false
default: ${{ github.event_name }}
fail-fast:
description: Exit immediately if any workflow is failing
required: true
default: 'true'
initial-delay-seconds:
description: Initial delay before polling in seconds
required: true
default: '10'
period-seconds:
description: Polling period in seconds
required: true
default: '15'
page-size-of-check-suites:
description: Page size of CheckSuites query
required: true
default: '100'
sha:
description: Commit SHA to wait for
required: true
default: ${{ github.event.pull_request.head.sha || github.sha }}
token:
description: GitHub token
required: true
default: ${{ github.token }}
outputs:
rollup-state:
description: Either SUCCESS or FAILURE
failed-workflow-names:
description: List of failed workflow names (multiline)
runs:
using: 'node20'
main: 'dist/index.js'