Skip to content
This repository was archived by the owner on Dec 27, 2025. It is now read-only.

chore(nix): tweak flake.nix #17

chore(nix): tweak flake.nix

chore(nix): tweak flake.nix #17

Workflow file for this run

name: Generate Help
on:
push:
branches: [main]
jobs:
generate-help:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- uses: kdheepak/panvimdoc@main
with:
vimdoc: fennel-syntax
description: Yet another syntax highlighting plugin for Fennel
toc: false
shiftheadinglevelby: -1
- run: |
git add doc/*.txt
if git diff-index --quiet HEAD --; then
: Nothing to commit
else
git commit -m "auto: generate help"
fi
- run: |
git push