项目文件夹

文件
wehub-resource-sync 498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:31:17 +08:00

68 行
2.4 KiB
YAML

name: all-contributors
on:
schedule:
# * is a special character in YAML so you have to quote this string
# ┌───────────── minute (0 - 59)
# │ ┌───────────── hour (0 - 23)
# │ │ ┌───────────── day of the month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ │
- cron: '0 0,12 * * *'
jobs:
contributor:
runs-on: ubuntu-latest
if: github.repository == 'milvus-io/milvus'
steps:
- name: checkout code
uses: actions/checkout@v2
with:
token: ${{ secrets.ALL_CONTRIBUTORS_TOKEN }}
- name: log path
run: |
pwd
ls
- name: Update README.md
uses: milvus-io/hero-bot@dco-enabled
with:
# Required
token: ${{ secrets.ALL_CONTRIBUTORS_TOKEN }}
repos: 'milvus-io/milvus,bootcamp,community,docs,milvus-helm,milvus-sdk-go,milvus-sdk-java,milvus-sdk-node,milvus.io,pymilvus,pymilvus-orm'
targetFile: './README.md'
# Optional
isAscend: True
width: '30px'
customUserConfig: 'milvus-io/milvus/.contributors'
workingDir: ${{ github.workspace }}
- name: Update README_CN.md
uses: milvus-io/hero-bot@dco-enabled
with:
# Required
token: ${{ secrets.ALL_CONTRIBUTORS_TOKEN }}
repos: 'milvus-io/milvus,bootcamp,community,docs,milvus-helm,milvus-sdk-go,milvus-sdk-java,milvus-sdk-node,milvus.io,pymilvus,pymilvus-orm'
targetFile: './README_CN.md'
# Optional
isAscend: True
width: '30px'
customUserConfig: 'milvus-io/milvus/.contributors'
workingDir: ${{ github.workspace }}
- name: commit code
run: |
pwd
git config --system user.email "sre-ci-robot@zilliz.com"
git config --system user.name "sre-ci-robot"
git add -u
git diff-index --cached --quiet HEAD || (git commit -s -m 'Update all contributors' && git push)