Neovim plugin improving access to clipboard history (mirror)

ci: update workflows

ptdewey acfef7e1 0b23aed6

+22 -1
+1 -1
.github/workflows/docs.yaml
··· 20 20 - name: Push changes 21 21 uses: stefanzweifel/git-auto-commit-action@v4 22 22 with: 23 - commit_message: "doc: auto-generate vimdoc" 23 + commit_message: "docs: auto-generate vimdoc" 24 24 commit_user_name: "github-actions[bot]" 25 25 commit_user_email: "github-actions[bot]@users.noreply.github.com" 26 26 commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>"
+21
.github/workflows/release.yaml
··· 1 + name: Release To GitHub 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + workflow_dispatch: 8 + 9 + permissions: 10 + contents: write 11 + pull-requests: write 12 + 13 + jobs: 14 + release: 15 + name: Release To GitHub 16 + runs-on: ubuntu-latest 17 + steps: 18 + - uses: googleapis/release-please-action@v4 19 + with: 20 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 21 + release-type: simple