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 16f78b7 commit a838060Copy full SHA for a838060
src/proxy/index.ts
@@ -44,10 +44,8 @@ export const proxyPreparations = async () => {
44
const allowedList: Repo[] = await getRepos();
45
46
await Promise.all(defaultAuthorisedRepoList.map(async (x) => {
47
- console.log('x', x);
48
- console.log('allowedList', allowedList);
49
const found = allowedList.find((y) => y.project === x.project && x.name === y.name);
50
- console.log('found', found);
+
51
if (!found) {
52
await createRepo(x);
53
await addUserCanPush(x.name, 'admin');
0 commit comments