Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a4f60bb

Browse filesBrowse files
authored
fix: use 3-dots syntax for diff on push (#1040)
1 parent 5815a4b commit a4f60bb
Copy full SHA for a4f60bb

File tree

3 files changed

+3
-3
lines changed
Filter options

3 files changed

+3
-3
lines changed

‎dist/post_run/index.js

Copy file name to clipboardExpand all lines: dist/post_run/index.js
+1-1Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/run/index.js

Copy file name to clipboardExpand all lines: dist/run/index.js
+1-1Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/run.ts

Copy file name to clipboardExpand all lines: src/run.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ async function fetchPushPatch(ctx: Context): Promise<string> {
101101
const patchResp = await octokit.rest.repos.compareCommitsWithBasehead({
102102
owner: ctx.repo.owner,
103103
repo: ctx.repo.repo,
104-
basehead: `${ctx.payload.before}..${ctx.payload.after}`,
104+
basehead: `${ctx.payload.before}...${ctx.payload.after}`,
105105
mediaType: {
106106
format: `diff`,
107107
},

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.