forked from claude-did-this/claude-hub
- Remove Codecov upload from PR workflow to prevent hanging check suites - Keep coverage upload only on main branch CI workflow - Add CODECOV_TOKEN and verbose logging for better debugging - Update codecov.yml to prevent check suites on non-main branches
28 lines
576 B
YAML
28 lines
576 B
YAML
codecov:
|
|
require_ci_to_pass: false
|
|
|
|
coverage:
|
|
status:
|
|
project:
|
|
default:
|
|
target: auto
|
|
threshold: 1%
|
|
base: auto
|
|
# Only check coverage on main branch
|
|
if_ci_failed: error
|
|
patch:
|
|
default:
|
|
target: auto
|
|
threshold: 1%
|
|
base: auto
|
|
# Only check coverage on main branch
|
|
if_ci_failed: error
|
|
|
|
comment:
|
|
layout: "reach,diff,flags,tree"
|
|
behavior: default
|
|
require_changes: false
|
|
|
|
github_checks:
|
|
# Disable check suites to prevent hanging on non-main branches
|
|
annotations: false |