File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,12 +40,12 @@ runs:
4040 const has = new Set(labels.map(l => l.name));
4141
4242 if (!has.has(labelNeeded)) {
43- core.info(`\`${labelNeeded}\` not present — no robot testing required.`);
43+ core.info(`\`${labelNeeded}\` not present. No robot testing required.`);
4444 return;
4545 }
4646
4747 if (has.has(labelDone)) {
48- core.info(`\`${labelDone}\` present — robot testing confirmed.`);
48+ core.info(`\`${labelDone}\` present. Robot testing confirmed.`);
4949 return;
5050 }
5151
5555 `\`${labelNeeded}\` is present but \`${labelDone}\` has not been added. This PR cannot be merged until robot testing is complete.${shaLine}\n\n` +
5656 `> [!IMPORTANT]\n> Add \`${labelDone}\` once robot testing is complete.`
5757 );
58- core.setFailed(`\`${labelNeeded}\` is present but \`${labelDone}\` has not been added — robot testing must be completed before merging.`);
58+ core.setFailed(`\`${labelNeeded}\` is present but \`${labelDone}\` has not been added. Robot testing must be completed before merging.`);
Original file line number Diff line number Diff line change @@ -42,20 +42,20 @@ runs:
4242
4343 if (!has.has(labelDone)) {
4444 if (has.has(labelNeeded)) {
45- core.warning(`\`${labelDone}\` not found — \`${labelNeeded}\` is present but testing is not confirmed.`);
45+ core.warning(`\`${labelDone}\` not found. \`${labelNeeded}\` is present but testing is not confirmed.`);
4646 await postComment(
4747 `### ⚠️ Robot Testing Incomplete\n\n` +
4848 `\`${labelNeeded}\` is present but \`${labelDone}\` has not been added yet.${shaLine}\n\n` +
4949 `> [!WARNING]\n> Add \`${labelDone}\` once robot testing is complete.`
5050 );
5151 } else {
52- core.info(`\`${labelDone}\` not present — nothing to do.`);
52+ core.info(`\`${labelDone}\` not present. Nothing to do.`);
5353 }
5454 return;
5555 }
5656
57- core.info(`\`${labelDone}\` found — posting confirmation comment.`);
57+ core.info(`\`${labelDone}\` found. Posting confirmation comment.`);
5858 await postComment(
5959 `### ✅ Robot Test Complete\n\n` +
60- `\`${labelDone}\` has been added — robot testing has been confirmed for this PR.${shaLine}`
60+ `\`${labelDone}\` has been added. Robot testing has been confirmed for this PR.${shaLine}`
6161 );
Original file line number Diff line number Diff line change 4040 const has = new Set(labels.map(l => l.name));
4141
4242 if (!has.has(labelDone)) {
43- core.info(`\`${labelDone}\` not present — nothing to do.`);
43+ core.info(`\`${labelDone}\` not present. Nothing to do.`);
4444 return;
4545 }
4646
4949
5050 const shaLine = sha ? `\n\n**Commit:** \`${sha}\`` : '';
5151 const warning = !has.has(labelNeeded)
52- ? `\n\n> [!WARNING]\n> \`${labelDone}\` was removed but \`${labelNeeded}\` was not present — this PR may not be queued for robot testing.`
52+ ? `\n\n> [!WARNING]\n> \`${labelDone}\` was removed but \`${labelNeeded}\` was not present. This PR may not be queued for robot testing.`
5353 : '';
5454
5555 await postComment(
You can’t perform that action at this time.
0 commit comments