v1.6.6
🩹 [Patch]: Update test to connect a GitHub App using Connect-GitHubApp
(#60)
Description
This pull request updates the .github/workflows/TestWorkflow.yml
file to improve the organization and output formatting of GitHub-related logs in the workflow scripts. The most important changes include switching from Format-Table
to Format-List
for better readability, restructuring log groups for clarity, and replacing specific installation token-based connections with a streamlined Connect-GitHubApp
command.
Improvements to output formatting:
- Changed the output formatting from
Format-Table
toFormat-List
forGet-GitHubApp
andGet-GitHubConfig
commands to enhance readability. [1] [2]
Workflow restructuring:
- Replaced the token-based connection logic (
New-GitHubAppInstallationAccessToken
andConnect-GitHub
) with a simplifiedConnect-GitHubApp
command to connect to all installations of the app. [1] [2] - Added new log groups for
Contexts
(Get-GitHubContext -ListAvailable
) andGitHubConfig
(Get-GitHubConfig
) to improve clarity and organization of workflow logs. [1] [2]
Type of change
- 📖 [Docs]
- 🪲 [Fix]
- 🩹 [Patch]
-
⚠️ [Security fix] - 🚀 [Feature]
- 🌟 [Breaking change]
Checklist
- I have performed a self-review of my own code
- I have commented my code, particularly in hard-to-understand areas