Skip to content

Commit

Permalink
Fix: 同じ内容なら更新しないように
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi authored Nov 12, 2024
1 parent df19b99 commit d3c0253
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/collect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,8 @@ for (const { dirname, source } of successfulDownloads) {
body: deployInfoMessage,
},
);
} else if (comment.body === deployInfoMessage) {

Check failure on line 313 in scripts/collect.ts

View workflow job for this annotation

GitHub Actions / test

Unsafe member access .body on an `error` typed value
log.info("No update in deploy info, skipped.");
} else {
log.info("Updating deploy info...");
await octokit.request(
Expand Down

0 comments on commit d3c0253

Please sign in to comment.