Skip to content

Commit

Permalink
add: docs workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
luckasRanarison committed Aug 12, 2024
1 parent cec4e59 commit 0c6aba3
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Docs

on:
push:
branches:
- docs
paths:
- README.md
- .github/workflows/docs.yml

permissions:
contents: write

jobs:
docs:
runs-on: ubuntu-latest
name: pandoc to vimdoc
steps:
- uses: actions/checkout@v2
- uses: kdheepak/panvimdoc@main
with:
vimdoc: ${{ github.event.repository.name }}
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "docs: auto generate"
branch: docs

0 comments on commit 0c6aba3

Please sign in to comment.