From e380e7d52ce450aa04e47de4a12c95329b938e4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E6=99=BA=E5=AD=90?= Date: Sun, 27 Nov 2022 17:36:28 +0800 Subject: [PATCH] ci: add WIP check --- .github/workflows/wip.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/wip.yml diff --git a/.github/workflows/wip.yml b/.github/workflows/wip.yml new file mode 100644 index 00000000..12e16b98 --- /dev/null +++ b/.github/workflows/wip.yml @@ -0,0 +1,12 @@ +name: WIP +on: + pull_request: + types: [opened, synchronize, reopened, edited] + +jobs: + wip: + runs-on: ubuntu-latest + steps: + - uses: wip/action@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}