-
Notifications
You must be signed in to change notification settings - Fork 6
32 lines (30 loc) · 878 Bytes
/
doc.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
27
28
29
30
31
32
name: Generate documents
on:
push:
branches: [ main ]
jobs:
docs:
name: Generate documents
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Generating documents
uses: obaland/panvimdoc@main
with:
vimdoc: vfiler
description: File manager plugin for Vim/Neovim
pandoc: doc/vfiler.md
toc: true
- name: Commit changes
env:
COMMIT_MSG: |
docs: update doc/vfiler.txt
skip-checks: true
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git add doc/vfiler.txt
# Only commit and push if we have changes
git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push)