zola-check-manager

A Github Action allowing you to manage the zola check results in github
git clone git://archive.git.mtrnord.blog/MTRNord/zola-check-manager.git
Log | Files | Refs | README | LICENSE

action.yml (866B)


      1 name: "zola-check-manager"
      2 description: "An action helping to bring the zola check command results into your github workflow"
      3 author: "MTRNord"
      4 branding:
      5   icon: "check-circle"
      6   color: "purple"
      7 inputs:
      8   working_directory:
      9     required: false
     10     description: "Where to run zola check in"
     11     default: "."
     12   conclusion_level:
     13     required: false
     14     description: "The final conclusion of the check. Can be one of `action_required`, `failure`, `neutral`, `success`"
     15     default: "action_required"
     16   annotation_level:
     17     required: false
     18     description: "The level of the annotation. Can be one of `notice`, `failure`, `warning`"
     19     default: "warning"
     20   repo-token:
     21     required: false
     22     description: "The github token to use. Usually this is `secrets.GITHUB_TOKEN` if not defined"
     23     default: ${{ github.token }}
     24 runs:
     25   using: "node16"
     26   main: "dist/index.js"