milvus/.github/workflows/all-contributors.yaml
Xiangyu Wang b2ec6c1242
[skip ci]Update all-contributors (#6080)
Signed-off-by: Xiangyu Wang <xiangyu.wang@zilliz.com>
2021-06-24 17:05:17 +08:00

28 lines
800 B
YAML

name: all-contributors
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '10 9 * * *'
jobs:
contributor:
runs-on: ubuntu-latest
steps:
# Update README.md
- uses: milvus-io/hero-bot@1.4
with:
token: ${{ secrets.ALL_CONTRIBUTORS_TOKEN }}
repos: 'milvus-io/milvus,milvus-helm,bootcamp,milvus.io,milvus-sdk-java,pymilvus'
targetRepo: 'milvus-io/milvus'
filePath: 'README.md'
# Update README_CN.md
- uses: milvus-io/hero-bot@1.4
with:
token: ${{ secrets.ALL_CONTRIBUTORS_TOKEN }}
repos: 'milvus-io/milvus,milvus-helm,bootcamp,milvus.io,milvus-sdk-java,pymilvus'
targetRepo: 'milvus-io/milvus'
filePath: 'README_CN.md'