-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
27 lines (24 loc) · 823 Bytes
/
action.yml
File metadata and controls
27 lines (24 loc) · 823 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
name: workflow-conclusion
description: This action outputs the outcomes of jobs within the workflow.
inputs:
github-token:
description: Secret GitHub API token to use for making API requests.
default: ${{ github.token }}
required: true
fallback-conclusion:
description: 'The fallback conclusion to use'
required: false
default: skipped
additional-conclusions:
description: 'A JSON-parseable array of additional conclusions to consider.'
required: false
suppress-fallback-warnings:
description: 'Whether to suppress warnings about the fallback conclusion.'
required: true
default: 'false'
outputs:
workflow_conclusion:
description: Workflow conclusion
runs:
using: 'node24'
main: 'dist/index.js' # Can also be a relative path to the js file you want executed