-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
action.yml
46 lines (44 loc) · 2.16 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
45
46
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
name: 'GitHub Status'
description: "GitHub Action to check GitHub Status in your workflow"
author: 'crazy-max'
branding:
color: 'orange'
icon: 'alert-triangle'
inputs:
overall_threshold:
description: 'Defines threshold for overall status (also called rollup) of GitHub to fail the job (minor, major or critical)'
required: false
git_threshold:
description: 'Defines threshold for Git Operations to fail the job (operational, degraded_performance, partial_outage or major_outage)'
required: false
api_threshold:
description: 'Defines threshold for API Requests to fail the job (operational, degraded_performance, partial_outage or major_outage)'
required: false
webhooks_threshold:
description: 'Defines threshold for Webhooks to fail the job (operational, degraded_performance, partial_outage or major_outage)'
required: false
issues_threshold:
description: 'Defines threshold for Issues to fail the job (operational, degraded_performance, partial_outage or major_outage)'
required: false
prs_threshold:
description: 'Defines threshold for Pull Requests to fail the job (operational, degraded_performance, partial_outage or major_outage)'
required: false
actions_threshold:
description: 'Defines threshold for Actions to fail the job (operational, degraded_performance, partial_outage or major_outage)'
required: false
packages_threshold:
description: 'Defines threshold for Packages to fail the job (operational, degraded_performance, partial_outage or major_outage)'
required: false
pages_threshold:
description: 'Defines threshold for Pages to fail the job (operational, degraded_performance, partial_outage or major_outage)'
required: false
codespaces_threshold:
description: 'Defines threshold for Codespaces to fail the job (operational, degraded_performance, partial_outage or major_outage)'
required: false
copilot_threshold:
description: 'Defines threshold for Copilot to fail the job (operational, degraded_performance, partial_outage or major_outage)'
required: false
runs:
using: 'node20'
main: 'dist/index.js'