Skip to content

🪲 [Fix]: Fix test that gets a complex object #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 32 commits into from
Jan 15, 2025
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
d280ff3
Add GitConfig to boiler plate
MariusStorhaug Jan 13, 2025
a07d8a0
🩹 [Patch]: Enhance Git configuration logging to include system, globa…
MariusStorhaug Jan 13, 2025
0959bd8
🩹 [Patch]: Remove GitConfig output logging from TestWorkflow
MariusStorhaug Jan 13, 2025
0727530
🩹 [Patch]: Add GitConfig output to workflow for user name and email
MariusStorhaug Jan 14, 2025
c87da6f
🩹 [Patch]: Refactor Action-Test workflow to include Git configuration…
MariusStorhaug Jan 14, 2025
c9966c9
Refactor Git configuration logging to use a loop for local, global, a…
MariusStorhaug Jan 14, 2025
d9a7235
Refactor Action-Test workflow to improve Git configuration logging st…
MariusStorhaug Jan 14, 2025
d3f2a6d
🩹 [Patch]: Update Action-Test workflow to handle Git config command e…
MariusStorhaug Jan 14, 2025
6bb8937
🩹 [Patch]: Add type inspection for Git configuration list in Action-T…
MariusStorhaug Jan 14, 2025
b468922
Fix sorting of Git configuration list in Action-Test workflow
MariusStorhaug Jan 14, 2025
1698752
Enhance output formatting for Git configuration list in Action-Test w…
MariusStorhaug Jan 14, 2025
c3a16f5
Refactor Action-Test workflow to improve output display of Git config…
MariusStorhaug Jan 14, 2025
98ca86e
Refactor Action-Test workflow to parse and format Git configuration l…
MariusStorhaug Jan 14, 2025
2b042c8
Fix syntax error in Action-Test workflow for Git configuration list p…
MariusStorhaug Jan 14, 2025
7e5501f
Fix assignment operator in Action-Test workflow for Git configuration…
MariusStorhaug Jan 14, 2025
773d1ae
Enhance output formatting in Action-Test workflow to display Git conf…
MariusStorhaug Jan 14, 2025
7c0afd5
Change output formatting in Action-Test workflow to display Git confi…
MariusStorhaug Jan 14, 2025
a4ae13c
Refactor Action-Test workflow to use PSCustomObject for Git configura…
MariusStorhaug Jan 14, 2025
80e3550
Refactor Action-Test workflow to improve Git configuration object han…
MariusStorhaug Jan 14, 2025
2c3abeb
Refactor Action-Test workflow to improve Git configuration output for…
MariusStorhaug Jan 14, 2025
d9d6f76
Refactor Action-Test workflow to improve Git configuration handling a…
MariusStorhaug Jan 14, 2025
137af43
Change output formatting in Action-Test workflow to display Git confi…
MariusStorhaug Jan 14, 2025
1382384
Add debug output to Action-Test workflow for Git configuration
MariusStorhaug Jan 14, 2025
57afd3b
Fix token masking in Action-Test workflow to use correct match variable
MariusStorhaug Jan 14, 2025
376d679
Change output formatting in Action-Test workflow to use a table for G…
MariusStorhaug Jan 14, 2025
8894c84
test
MariusStorhaug Jan 14, 2025
788c316
Remove debug output from Action-Test workflow to streamline execution
MariusStorhaug Jan 14, 2025
b240a12
Change output formatting in Action-Test workflow to display only Name…
MariusStorhaug Jan 14, 2025
b8b53dd
Remove AutoSize option from table formatting in Action-Test workflow
MariusStorhaug Jan 14, 2025
4b04662
Revert
MariusStorhaug Jan 15, 2025
d846ecc
Refactor GitConfig output to filter properties by name
MariusStorhaug Jan 15, 2025
457b5c6
Update GitConfig output to retrieve system scope settings
MariusStorhaug Jan 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/TestWorkflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
}

LogGroup 'Set outputs - GitConfig' {
Set-GitHubOutput -Name 'GitConfig' -Value (Get-GitHubGitConfig | Where-Object { $_.Name -in 'user.name','user.email' })
Set-GitHubOutput -Name 'GitConfig' -Value (Get-GitHubGitConfig -Scope system)
}

LogGroup 'Set outputs - Zen2' {
Expand Down
Loading