forked from MTRNord/zola-check-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
26 lines (26 loc) · 866 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
25
26
name: "zola-check-manager"
description: "An action helping to bring the zola check command results into your github workflow"
author: "MTRNord"
branding:
icon: "check-circle"
color: "purple"
inputs:
working_directory:
required: false
description: "Where to run zola check in"
default: "."
conclusion_level:
required: false
description: "The final conclusion of the check. Can be one of `action_required`, `failure`, `neutral`, `success`"
default: "action_required"
annotation_level:
required: false
description: "The level of the annotation. Can be one of `notice`, `failure`, `warning`"
default: "warning"
repo-token:
required: false
description: "The github token to use. Usually this is `secrets.GITHUB_TOKEN` if not defined"
default: ${{ github.token }}
runs:
using: "node16"
main: "dist/index.js"