generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
24 lines (24 loc) · 790 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
name: 'Get Status Checks'
description: 'Get the status checks of a given ref.'
branding:
color: 'gray-dark'
icon: 'check-circle'
inputs:
ref:
description: 'Git ref, e.g. the sha.'
required: true
token:
description: 'The GitHub token used to create an authenticated client.'
default: ${{ github.token }}
required: false
ignore:
description: 'Workflow names that will be ignored during the validation. For multiple values, please separate them with commas, e.g. "test,build,get-status"'
required: false
outputs:
all-checks-completed:
description: 'Returns true if all checks are completed.'
all-checks-passed:
description: 'Returns true if all checks concluded either with success or skipped.'
runs:
using: 'node16'
main: 'dist/index.js'