A Github action to track the status of a zola check using check runs.
name: Zola Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
zola-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: MTRNord/zola-check-manager@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}working_directory: The folder where thezola checkshould be executed. Default:.repo-token: The token to use to authenticate with Github. Default:${{ secrets.GITHUB_TOKEN }}. This requires thechecks:writepermission.conclusion_level: The conclusion level to use. Can beaction_required,failure,neutral,success. Default:action_required
Please use conventional commits. You can use the pre-commit script to ensure you
do use conventional commits by running pre-commit install -t prepare-commit-msg -t commit-msg
after installing pre-commit.