From ae214d63b996ae7ce78dd897ae67ac95de6ec772 Mon Sep 17 00:00:00 2001 From: Xiangyu Wang Date: Wed, 23 Jun 2021 19:41:16 +0800 Subject: [PATCH] [skip ci]Add all-contributions GitHub Action (#6041) Signed-off-by: Xiangyu Wang --- .github/workflows/all-contributors.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/all-contributors.yaml diff --git a/.github/workflows/all-contributors.yaml b/.github/workflows/all-contributors.yaml new file mode 100644 index 0000000000..0e9b532f56 --- /dev/null +++ b/.github/workflows/all-contributors.yaml @@ -0,0 +1,14 @@ +name: add contributor + +on: push + +jobs: + contributor: + runs-on: ubuntu-latest + steps: + - uses: milvus-io/hero-bot@1.3 + with: + token: ${{ secrets.ALL_CONTRIBUTORS_TOKEN }} + repos: 'milvus-io/milvus,milvus-io/pymilvus' + targetRepo: 'milvus-io/milvus' +