vim-plugin-update #112
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: vim-plugin-update | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # run once a week on Wednesday | |
| - cron: '30 3 * * 3' | |
| jobs: | |
| update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: update vim plugins | |
| run: cd config/vim && make update-plugins | |
| - name: commit and push changes | |
| run: | | |
| git config user.name Github Actions | |
| git config user.email actions@noreply.github.com | |
| git add config/vim/pack | |
| git commit --allow-empty -m "update vim plugins" | |
| git push | |