Skip to content
This repository was archived by the owner on Feb 19, 2026. It is now read-only.

Commit b9e9c8c

Browse files
committed
ci
1 parent 0d53f34 commit b9e9c8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

script/beta.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ async function main() {
4949
continue
5050
}
5151

52-
// Get diff from PR base to PR head and apply it
52+
// Get diff from dev to PR head (PR's changes)
5353
console.log(` Getting diff for PR #${pr.number}...`)
54-
const diff = await $`git diff HEAD...pr-${pr.number}`.nothrow()
54+
const diff = await $`git diff dev..pr-${pr.number}`.nothrow()
5555
if (diff.exitCode !== 0) {
5656
console.log(` Failed to get diff for PR #${pr.number}`)
5757
console.log(` Error: ${diff.stderr}`)

0 commit comments

Comments
 (0)