Tests: Make frontend test coverage CI check optional according to policy-bot (#125445)

fix(ci): make frontend test coverage check optional in policy-bot
This commit is contained in:
Jesse David Peterson 2026-05-26 11:49:59 -03:00 committed by GitHub
parent 947e96fd46
commit 4a809f82a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View file

@ -151,6 +151,7 @@ approval_rules:
conclusions:
- skipped
- success
- failure
workflows:
- .github/workflows/check-frontend-test-coverage.yml
- name: Workflow .github/workflows/codeowners-validator.yml succeeded or skipped

View file

@ -851,3 +851,5 @@ GENERATE_POLICY_BOT_CONFIG_SHA := sha256:d05ff5c7d4247da155c85f8c6f1f9f7c6d013d1
sed -i.bak '/- Workflow \.github\/workflows\/create-security-patch-from-security-mirror/d' .policy.yml; rm -f .policy.yml.bak
# Make govulncheck non-blocking - accept failure so it doesn't prevent merge
sed -i.bak '/name: Workflow \.github\/workflows\/govulncheck\.yml/,/workflows:/{s/- success/- success\n - failure/;}' .policy.yml; rm -f .policy.yml.bak
# Make check-frontend-test-coverage non-blocking - accept failure so it doesn't prevent merge
sed -i.bak '/name: Workflow \.github\/workflows\/check-frontend-test-coverage\.yml/,/workflows:/{s/- success/- success\n - failure/;}' .policy.yml; rm -f .policy.yml.bak