Skip to content

Commit d9f0631

Browse files
committed
Fix deploy failed message
1 parent 79d9549 commit d9f0631

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/docs/preview-deploy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ module.exports = async ({ github, context }) => {
100100
status === "READY"
101101
? `\n✅ Successfully deployed docs preview for commit ${shortCommitSHA}:`
102102
: `\n❌ Docs preview deployment ${
103-
status === "CANCELED" ? "failed" : "was canceled"
103+
status === "CANCELED" ? "was canceled" : "failed"
104104
} for commit ${shortCommitSHA}:`
105105
}\n\n<https://${deployment.url}>\n\n(Last updated: ${formatDatetime(
106106
new Date()

0 commit comments

Comments
 (0)