diff --git a/.github/workflows/async_wiki.yml b/.github/workflows/async_wiki.yml new file mode 100644 index 000000000..fa00b63f4 --- /dev/null +++ b/.github/workflows/async_wiki.yml @@ -0,0 +1,20 @@ +name: Async SpaceVim wiki + +on: [push] + +jobs: + check: + strategy: + fail-fast: false + matrix: + wikiLang: ["cn", "en"] + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@master + - name: Detach ${{ matrix.wikiLang }} + env: + BOTSECRET: ${{ secrets.BOTSECRET }} + run: ./wiki/async.sh ${{ matrix.wikiLang }} + +