mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 17:30:04 +08:00
20 lines
727 B
YAML
20 lines
727 B
YAML
name: Detach Plugins
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
check:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
detachPlugin: ["FlyGrep.vim", "dein-ui.vim", "vim-todo", "iedit.vim", "scrollbar.vim", "vim-chat", "vim-cheat", "xmake.vim", "GitHub.vim", "JavaUnit.vim", "git.vim", "cpicker.nvim", "SourceCounter.vim", "vim-zettelkasten", "format.nvim", "record-key.nvim", "quickfix.nvim", "winbar.nvim"]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
- name: Detach ${{ matrix.detachPlugin }}
|
|
env:
|
|
BOTSECRET: ${{ secrets.BOTSECRET_GITHUB }}
|
|
SpaceVim_COMMIT_MSG: ${{ github.event.commits[0].message }}
|
|
run: .ci/detach_plugin.sh ${{ matrix.detachPlugin }}
|