Skip to content

Commit 038e28d

Browse files
🩹 [Patch]: Add logging for GitHub organization and repository retrieval in Action tests
1 parent c38d6f6 commit 038e28d

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

‎.github/workflows/TestWorkflow.yml‎

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,14 @@ jobs:
407407
Get-GitHubUser | Format-Table -AutoSize | Out-String
408408
}
409409
410+
LogGroup 'Get-GitHubOrganization' {
411+
Get-GitHubOrganization | Out-String
412+
}
413+
414+
LogGroup 'Get-GitHubRepository' {
415+
Get-GitHubRepository | Out-String
416+
}
417+
410418
ActionTestWithUSERFGPAT:
411419
name: WithUserFGPAT
412420
runs-on: ${{ inputs.runs-on }}
@@ -425,6 +433,14 @@ jobs:
425433
Get-GitHubUser | Format-Table -AutoSize | Out-String
426434
}
427435
436+
LogGroup 'Get-GitHubOrganization' {
437+
Get-GitHubOrganization | Out-String
438+
}
439+
440+
LogGroup 'Get-GitHubRepository' {
441+
Get-GitHubRepository | Out-String
442+
}
443+
428444
ActionTestWithORGFGPAT:
429445
name: WithOrgFGPAT
430446
runs-on: ${{ inputs.runs-on }}
@@ -443,6 +459,14 @@ jobs:
443459
Get-GitHubUser | Format-Table -AutoSize | Out-String
444460
}
445461
462+
LogGroup 'Get-GitHubOrganization' {
463+
Get-GitHubOrganization | Out-String
464+
}
465+
466+
LogGroup 'Get-GitHubRepository' {
467+
Get-GitHubRepository | Out-String
468+
}
469+
446470
ActionTestWithGitHubAppEnt:
447471
name: GitHubAppEnt
448472
runs-on: ${{ inputs.runs-on }}

0 commit comments

Comments
 (0)