diff options
| author | Marco Hinz <mh.codebro@gmail.com> | 2021-05-16 12:16:34 +0200 |
|---|---|---|
| committer | Marco Hinz <mh.codebro@gmail.com> | 2021-05-16 12:16:34 +0200 |
| commit | 7e8a2e8807b315b35156a53d473863d6d46be376 (patch) | |
| tree | 73607321e2278cbadbf676c22779ccb19c52bc21 /.github | |
| parent | Merge pull request #871 from mjlbach/fix_docgen_v4 (diff) | |
| download | nvim-lspconfig-7e8a2e8807b315b35156a53d473863d6d46be376.tar nvim-lspconfig-7e8a2e8807b315b35156a53d473863d6d46be376.tar.gz nvim-lspconfig-7e8a2e8807b315b35156a53d473863d6d46be376.tar.bz2 nvim-lspconfig-7e8a2e8807b315b35156a53d473863d6d46be376.tar.lz nvim-lspconfig-7e8a2e8807b315b35156a53d473863d6d46be376.tar.xz nvim-lspconfig-7e8a2e8807b315b35156a53d473863d6d46be376.tar.zst nvim-lspconfig-7e8a2e8807b315b35156a53d473863d6d46be376.zip | |
docgen: explicitly allow pushing commits
We default to read-only permissions for the "contents" scope:
https://github.com/neovim/nvim-lspconfig/settings/actions
Explicitly allow pushing commits.
https://docs.github.com/en/rest/reference/permissions-required-for-github-apps#permission-on-contents
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/docgen.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/docgen.yml b/.github/workflows/docgen.yml index 1818503e..619f97a3 100644 --- a/.github/workflows/docgen.yml +++ b/.github/workflows/docgen.yml @@ -8,6 +8,8 @@ on: jobs: docgen: runs-on: [ubuntu-latest] + permissions: + contents: write steps: - uses: actions/checkout@v2 - run: date +%F > todays-date |
