@@ -134,7 +134,7 @@ jobs:
|
134 | 134 | with: |
135 | 135 | ref: ${{ inputs.ref }} |
136 | 136 | expected_sha: ${{ needs.validate_selected_ref.outputs.selected_revision }} |
137 | | -qa_profile: release |
| 137 | +qa_profile: all |
138 | 138 | secrets: |
139 | 139 | OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} |
140 | 140 | |
@@ -238,8 +238,8 @@ jobs:
|
238 | 238 | } |
239 | 239 | |
240 | 240 | const evidence = JSON.parse(fs.readFileSync(evidencePath, "utf8")); |
241 | | - if (evidence.profile !== "release") { |
242 | | - throw new Error(`qa-evidence.json profile must be release, got ${JSON.stringify(evidence.profile)}`); |
| 241 | + if (evidence.profile !== "all") { |
| 242 | + throw new Error(`qa-evidence.json profile must be all, got ${JSON.stringify(evidence.profile)}`); |
243 | 243 | } |
244 | 244 | |
245 | 245 | const artifactDir = path.dirname(evidencePath); |
@@ -256,8 +256,8 @@ jobs:
|
256 | 256 | const manifestPath = path.join(artifactDir, manifestNames[0]); |
257 | 257 | const manifest = JSON.parse(fs.readFileSync(manifestPath, "utf8")); |
258 | 258 | const manifestProfile = manifest.qaProfile ?? evidence.profile; |
259 | | - if (manifestProfile !== "release") { |
260 | | - throw new Error(`QA evidence manifest profile must be release, got ${JSON.stringify(manifestProfile)}`); |
| 259 | + if (manifestProfile !== "all") { |
| 260 | + throw new Error(`QA evidence manifest profile must be all, got ${JSON.stringify(manifestProfile)}`); |
261 | 261 | } |
262 | 262 | if (manifest.targetSha !== targetSha) { |
263 | 263 | throw new Error(`QA evidence manifest targetSha ${manifest.targetSha} does not match selected ref ${targetSha}`); |
@@ -428,14 +428,14 @@ jobs:
|
428 | 428 | cat > "$body_file" <<BODY |
429 | 429 | ## Summary |
430 | 430 | |
431 | | - - render maturity scorecard docs from \`qa/maturity-scores.yaml\` and release QA evidence |
| 431 | + - render maturity scorecard docs from \`qa/maturity-scores.yaml\` and full taxonomy QA evidence |
432 | 432 | - maturity source ref: ${REF_INPUT} |
433 | 433 | - QA evidence run: ${evidence_run_id} |
434 | 434 | |
435 | 435 | ## Verification |
436 | 436 | |
437 | 437 | - QA Lab maturity score validation passed |
438 | | - - Maturity scorecard workflow rendered docs from release profile qa-evidence.json artifacts with strict inputs |
| 438 | + - Maturity scorecard workflow rendered docs from all profile qa-evidence.json artifacts with strict inputs |
439 | 439 | BODY |
440 | 440 | |
441 | 441 | pr_url="$(gh pr list --head "$branch" --state open --json url --jq '.[0].url // ""')" |
|