File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 5656 api_base : https://api.codeant.ai
5757 platform : github
5858 base_url : https://github.com
59+ module : backend # Optional: for monorepo setups
5960` ` `
6061
6162## Inputs
6768| `api_base` | CodeAnt AI API base URL | No | `https://api.codeant.ai` |
6869| `platform` | Git platform (github, gitlab, bitbucket) | No | `github` |
6970| `base_url` | Base URL of the git platform | No | `https://github.com` |
71+ | `module` | Module name for monorepo setups (optional) | No | `''` |
7072
7173# # Supported Coverage Formats
7274
Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ inputs:
2626 description : ' Base URL of the git platform'
2727 required : false
2828 default : ' https://github.com'
29+ module :
30+ description : ' Module name for monorepo setups (optional)'
31+ required : false
32+ default : ' '
2933
3034runs :
3135 using : ' composite'
6064 COVERAGE_FILE : ${{ inputs.coverage_file }}
6165 PLATFORM : ${{ inputs.platform }}
6266 BASE_URL : ${{ inputs.base_url }}
67+ MODULE : ${{ inputs.module }}
6368 run : |
6469 bash upload_coverage.sh \
6570 -t "$ACCESS_TOKEN" \
6873 -f "$COVERAGE_FILE" \
6974 -p "$PLATFORM" \
7075 -b "$BRANCH" \
71- -u "$BASE_URL"
76+ -u "$BASE_URL" \
77+ -m "$MODULE"
You can’t perform that action at this time.
0 commit comments