Skip to content

Commit f8a71a4

Browse files
getdevopspro-cibotjobcespedes
authored andcommitted
refactor: remove dashes
1 parent 2a456b6 commit f8a71a4

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/actions/test-robot-check/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
@@ -55,4 +55,4 @@ runs:
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.`);

.github/actions/test-robot-label/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
);

.github/actions/test-robot-unlabel/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ runs:
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
@@ -49,7 +49,7 @@ runs:
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(

0 commit comments

Comments
 (0)