forked from LASER-Yi/workflow-status
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
34 lines (34 loc) · 751 Bytes
/
action.yml
File metadata and controls
34 lines (34 loc) · 751 Bytes
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
name: Workflow Status
description: Validates another workflow's latest status
branding:
icon: check-circle
color: blue
inputs:
token:
description: 'GITHUB_TOKEN'
required: true
workflow:
description: 'The name of workflow'
required: true
repo:
description: 'The repo that contains workflow'
required: false
branch:
description: 'The branch to validate'
required: false
default: main
event:
description: 'The event to validate'
required: false
wait:
description: 'Wait until workflow completed'
required: false
default: false
outputs:
status:
description: 'Workflow status'
conclusion:
description: 'Workflow conclusion'
runs:
using: 'node16'
main: 'dist/index.js'