Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add coverage data to MOC about CI-PR Coverage #19282

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/entrypoint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,8 @@ jobs:
S3BUCKET: ${{ secrets.S3BUCKET }}
DOCU_GROUP_HOOK: ${{ secrets.DOCU_GROUP_HOOK }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
EE_DB_ADDR: ${{ secrets.EE_DB_ADDR }}
EE_DB_PORT: ${{ secrets.EE_DB_PORT }}
EE_DB_USER: ${{ secrets.EE_DB_USER }}
EE_DB_PASSWORD: ${{ secrets.EE_DB_PASSWORD }}
EE_DB_DB: ${{ secrets.EE_DB_DB }}
11 changes: 11 additions & 0 deletions .github/workflows/merge-update-moc.yaml
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

感觉这个workflow不应该添加,这个的作用是什么呢?

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Merge Update MOC
on:
pull_request_target:
branches: [ main,'[0-9]+.[0-9]+*' ]
types:
- closed

jobs:
merge-update-moc:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

在此处判断pr是否merge,不要再进被调用的workflow里面判断

uses: matrixorigin/CI/.github/workflows/merge-update-moc.yaml@main
secrets: inherit
Loading