This repository was archived by the owner on Dec 27, 2025. It is now read-only.
chore(nix): tweak flake.nix #17
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |