diff --git a/.github/workflows/cicd_scheduled_notify-seated-prs.yml b/.github/workflows/cicd_scheduled_notify-seated-prs.yml index bdcca9eebd6c..bafaf9163928 100644 --- a/.github/workflows/cicd_scheduled_notify-seated-prs.yml +++ b/.github/workflows/cicd_scheduled_notify-seated-prs.yml @@ -96,7 +96,7 @@ jobs: return; } - console.log(`Detected PR [${pr.number}] has been seated enough`); + console.log(`Detected PR [${pr.number}] ([${pr.user.login}) has been seated enough`); let userPrs = seatedPrs.find(pr => pr.login === login); if (!userPrs) { @@ -173,8 +173,8 @@ jobs: const seatedPrs = ${{ needs.resolve-seated-prs.outputs.seated_prs }} const mappings = ${{ needs.slack-channel-resolver.outputs.mappings_json }}; - const members = ${{ needs.resolve-seated-prs.outputs.members_json }} - const channels = ${{ needs.slack-channel-resolver.outputs.channel_ids }} + const members = ${{ needs.resolve-seated-prs.outputs.members_json }}; + const channels = ${{ needs.slack-channel-resolver.outputs.channel_ids }}; const foundMapping = mappings.find(mapping => mapping.slack_id === member) if (!foundMapping) { @@ -184,8 +184,8 @@ jobs: core.setOutput('guthub_user', foundMappin.github_user); console.log(`Members: ${JSON.stringify(members, null, 2)}`); - console.log(`Channels: ${JSON.stringify(channels, null, 2)`); - console.log(`Found mapping: ${JSON.stringify(foundMapping, null, 2)`); + console.log(`Channels: ${JSON.stringify(channels, null, 2)}`); + console.log(`Found mapping: ${JSON.stringify(foundMapping, null, 2)}`); const login = foundMapping.github_user; const userPrs = seatedPrs.find(pr => pr.login === login);