Skip to content

Commit

Permalink
🩹 (scripts) pass owner/repo and create repo_id in the post
Browse files Browse the repository at this point in the history
  • Loading branch information
JeromeFitz committed May 14, 2021
1 parent 20e3456 commit ca9bf4e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/scripts/src/github/pullRequest.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ async function setPullRequest({
dryRun = false,
head,
labels,
repo_id,
owner,
repo,
version,
q,
}) {
try {
const repo_id = `${owner}/${repo}`
// @note(ci) assumes travis keeps us honest when this runs
const base = isMain ? 'develop' : 'main'
const bodyTemplate = PULL_REQUEST__GITFLOW()
Expand Down

0 comments on commit ca9bf4e

Please sign in to comment.