Spaces:
Runtime error
Runtime error
Charlie
commited on
Commit
·
d25d788
1
Parent(s):
6a276be
update files
Browse files- dist/main.js +2 -1
- src/main.ts +3 -1
dist/main.js
CHANGED
@@ -99,7 +99,8 @@ var showAuthenticatedUI = async () => {
|
|
99 |
organization: organizationName,
|
100 |
private: true
|
101 |
});
|
102 |
-
|
|
|
103 |
await client.post(
|
104 |
`organizations/${organizationName}/resource-groups`,
|
105 |
{
|
|
|
99 |
organization: organizationName,
|
100 |
private: true
|
101 |
});
|
102 |
+
console.log({ repo });
|
103 |
+
if (resourceGroupName) {
|
104 |
await client.post(
|
105 |
`organizations/${organizationName}/resource-groups`,
|
106 |
{
|
src/main.ts
CHANGED
@@ -49,8 +49,10 @@ const showAuthenticatedUI = async () => {
|
|
49 |
private: true,
|
50 |
});
|
51 |
|
|
|
|
|
52 |
// create RG wi for repo
|
53 |
-
if (
|
54 |
await client.post<void>(
|
55 |
`organizations/${organizationName}/resource-groups`,
|
56 |
{
|
|
|
49 |
private: true,
|
50 |
});
|
51 |
|
52 |
+
console.log({ repo });
|
53 |
+
|
54 |
// create RG wi for repo
|
55 |
+
if (resourceGroupName) {
|
56 |
await client.post<void>(
|
57 |
`organizations/${organizationName}/resource-groups`,
|
58 |
{
|