We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 693b15f commit 94fb10cCopy full SHA for 94fb10c
1 file changed
.github/workflows/ci.yml
@@ -16,10 +16,15 @@ jobs:
16
17
docs:
18
runs-on: ubuntu-latest
19
+ permissions:
20
+ # Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository.
21
+ contents: write
22
name: pandoc to vimdoc
23
if: ${{ github.ref == 'refs/heads/main' }}
24
steps:
25
- uses: actions/checkout@v4
26
+ with:
27
+ token: ${{ secrets.GITHUB_TOKEN }}
28
- name: panvimdoc
29
uses: kdheepak/panvimdoc@main
30
with:
@@ -31,6 +36,7 @@ jobs:
31
36
commit_user_name: "github-actions[bot]"
32
37
commit_user_email: "github-actions[bot]@users.noreply.github.com"
33
38
commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>"
39
+ commit_options: "--no-verify"
34
40
35
41
test:
42
name: Run Test
0 commit comments