@@ -134,7 +134,7 @@ jobs:
134134 with :
135135 ref : ${{ inputs.ref }}
136136 expected_sha : ${{ needs.validate_selected_ref.outputs.selected_revision }}
137- qa_profile : release
137+ qa_profile : all
138138 secrets :
139139 OPENAI_API_KEY : ${{ secrets.OPENAI_API_KEY }}
140140
@@ -238,8 +238,8 @@ jobs:
238238 }
239239
240240 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)}`);
243243 }
244244
245245 const artifactDir = path.dirname(evidencePath);
@@ -256,8 +256,8 @@ jobs:
256256 const manifestPath = path.join(artifactDir, manifestNames[0]);
257257 const manifest = JSON.parse(fs.readFileSync(manifestPath, "utf8"));
258258 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)}`);
261261 }
262262 if (manifest.targetSha !== targetSha) {
263263 throw new Error(`QA evidence manifest targetSha ${manifest.targetSha} does not match selected ref ${targetSha}`);
@@ -428,14 +428,14 @@ jobs:
428428 cat > "$body_file" <<BODY
429429 ## Summary
430430
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
432432 - maturity source ref: ${REF_INPUT}
433433 - QA evidence run: ${evidence_run_id}
434434
435435 ## Verification
436436
437437 - 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
439439 BODY
440440
441441 pr_url="$(gh pr list --head "$branch" --state open --json url --jq '.[0].url // ""')"
0 commit comments