File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -132,8 +132,8 @@ function connect() {
132
132
eventAttributes [ "RepositoryOwnerType" ]
133
133
) ;
134
134
135
- let names ,
136
- shas = "" ;
135
+ let names = "" ;
136
+ let shas = "" ;
137
137
for ( let branch of branches ) {
138
138
names += `[${ branch . name } ](https://gitopia.com/${ repoOwnerName } /${ eventAttributes [ "RepositoryName" ] } /tree/${ branch . name } )\n` ;
139
139
shas += `${ branch . sha } \n` ;
@@ -168,8 +168,8 @@ function connect() {
168
168
return ;
169
169
}
170
170
171
- let names ,
172
- shas = "" ;
171
+ let names = "" ;
172
+ let shas = "" ;
173
173
for ( let branch of branches ) {
174
174
names += `${ branch . name } \n` ;
175
175
shas += `${ branch . sha } \n` ;
@@ -214,8 +214,8 @@ function connect() {
214
214
eventAttributes [ "RepositoryOwnerType" ]
215
215
) ;
216
216
217
- let names ,
218
- shas = "" ;
217
+ let names = "" ;
218
+ let shas = "" ;
219
219
for ( let tag of tags ) {
220
220
names += `[${ tag . name } ](https://gitopia.com/${ repoOwnerName } /${ eventAttributes [ "RepositoryName" ] } /tree/${ tag . name } )\n` ;
221
221
shas += `${ tag . sha } \n` ;
@@ -250,8 +250,8 @@ function connect() {
250
250
return ;
251
251
}
252
252
253
- let names ,
254
- shas = "" ;
253
+ let names = "" ;
254
+ let shas = "" ;
255
255
for ( let tag of tags ) {
256
256
names += `${ tag . name } \n` ;
257
257
shas += `${ tag . sha } \n` ;
You can’t perform that action at this time.
0 commit comments