Skip to content

Commit 5dadc56

Browse files
authored
fix(ci): automated doc update fail due to no commit permission (#2)
1 parent dd313a1 commit 5dadc56

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/docs.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,28 @@ on:
22
push:
33
branches:
44
- main
5+
56
name: docs
67

8+
permissions:
9+
pull-requests: write
10+
contents: write
11+
712
jobs:
813
docs:
914
runs-on: ubuntu-latest
1015
steps:
11-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
17+
1218
- name: panvimdoc
1319
uses: kdheepak/panvimdoc@main
1420
with:
15-
vimdoc: my-template-docs
16-
version: "Neovim >= 0.8.0"
21+
vimdoc: "nvim-java-core"
22+
dedupsubheadings: false
23+
version: "Neovim >= 0.9.4"
1724
demojify: true
18-
treesitter: true
1925

2026
- name: Create Pull Request
2127
uses: peter-evans/create-pull-request@v5
2228
with:
23-
commit-message: "chore(doc): auto-generate vimdoc"
29+
base: "main"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# :construction: nvim-java (WIP)
1+
# nvim-java-core
22

33
![Neovim](https://img.shields.io/badge/NeoVim-%2357A143.svg?&style=for-the-badge&logo=neovim&logoColor=white)
44
![Lua](https://img.shields.io/badge/lua-%232C2D72.svg?style=for-the-badge&logo=lua&logoColor=white)

0 commit comments

Comments
 (0)