We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5e1c38 commit f132f09Copy full SHA for f132f09
repos.js
@@ -101,11 +101,13 @@ async function fetchRepoAndSaveToModRepos(treeLoc) {
101
// if didn't encounter an error
102
if (!repo.message) {
103
104
- // if temp repo changed,
+ // check temp repo changed
105
const tempRepo = modifiedRepos[fullName];
106
107
// create repo obj
108
- const repoObj = createRepoObj(fullName, repo.default_branch,
+ const repoObj = createRepoObj(fullName,
109
+
110
+ (tempRepo.selBranch ?? repo.default_branch),
111
112
(tempRepo.pushAccess ?? (repo.permissions.push ?? false)),
113
0 commit comments