File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -333,7 +333,6 @@ async function publishReleaseTestingStatus(release) {
333333
334334 for ( const team of teamResults ) {
335335 let slackHandlePart = await fmtSlackHandle ( team ) ;
336- console . log ( `Team: ${ team . team } , Slack Handle Part: ${ slackHandlePart } ` ) ;
337336 const releaseBlockers = await getReleaseBlockers ( release , team . team ) ;
338337 //Accumulate the release blocker count
339338 releaseBlockerCount += releaseBlockers . count ;
@@ -352,7 +351,6 @@ async function publishReleaseTestingStatus(release) {
352351
353352
354353 try {
355- // Use the `chat.postMessage` method to send a message to the channel
356354 const response = await slackClient . chat . postMessage ( {
357355 channel : channel ,
358356 text : slackMessage ,
@@ -361,6 +359,7 @@ async function publishReleaseTestingStatus(release) {
361359 } ) ;
362360
363361 console . log ( `Message successfully sent to channel ${ channel } for release ${ release . SemanticVersion } on platform ${ release . Platform } .` ) ;
362+
364363 } catch ( error ) {
365364 console . error ( 'API error:' , error ) ;
366365 throw error ;
@@ -381,8 +380,8 @@ async function publishReleasesTestingStatus(activeReleases) {
381380}
382381
383382async function main ( ) {
384- //REAL SHEET
385- const documentId = process . env . GOOG_DOCUMENT_ID ; // Use the environment variable
383+
384+ const documentId = process . env . GOOG_DOCUMENT_ID ;
386385
387386 if ( ! documentId ) {
388387 console . error ( "Document ID is not set. Please set the GOOG_DOCUMENT_ID environment variable." ) ;
You can’t perform that action at this time.
0 commit comments