Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b95f120
Add initial test scripts for GitHub API interactions
MariusStorhaug Jun 10, 2025
5d4e6c2
🪲 [Fix]: Correct parameter set names in `Get-GitHubAppInstallation` f…
MariusStorhaug Jun 10, 2025
6db222e
🩹 [Patch]: Add `PerPage` parameter to `Get-GitHubAppInstallation` and…
MariusStorhaug Jun 10, 2025
ca1871b
🪲 [Fix]: Update references from `target_type` to `Type` and `account`…
MariusStorhaug Jun 10, 2025
faf2a42
🩹 [Patch]: Enhance logging in authentication tests by adding debug an…
MariusStorhaug Jun 10, 2025
f757b43
🩹 [Patch]: Refactor response handling in Get-GitHubAppInstallationFor…
MariusStorhaug Jun 10, 2025
2405ea2
🩹 [Patch]: Fix formatting in GitHubAppInstallation and update output …
MariusStorhaug Jun 10, 2025
c579845
🩹 [Patch]: Improve logging for app installation access tokens by grou…
MariusStorhaug Jun 10, 2025
15eb2f4
🩹 [Enhancement]: Extend GitHubApp class with additional properties an…
MariusStorhaug Jun 10, 2025
7d54226
🩹 [Patch]: Fix property casing for GitHub App attributes in Set-GitHu…
MariusStorhaug Jun 10, 2025
68f76bc
🩹 [Patch]: Rename InstallationsCount property to Installations for co…
MariusStorhaug Jun 10, 2025
95e2260
🩹 [Patch]: Update parameter set names for consistency in Get-GitHubAp…
MariusStorhaug Jun 10, 2025
2b1077b
🩹 [Enhancement]: Refactor GitHub configuration and event data tests t…
MariusStorhaug Jun 10, 2025
48e964a
🩹 [Patch]: Remove AppID null check from GitHubApp tests and update lo…
MariusStorhaug Jun 10, 2025
12398ff
🩹 [Enhancement]: Update event handling in GitHubApp class and improve…
MariusStorhaug Jun 10, 2025
83ecd8c
🩹 [Patch]: Update event assignment in GitHubApp constructor for consi…
MariusStorhaug Jun 10, 2025
d38be5c
🩹 [Fix]: Adjust event assignment in GitHubApp and GitHubAppInstallati…
MariusStorhaug Jun 10, 2025
1347edb
🩹 [Patch]: Update type assertions for Permissions and Events in Apps …
MariusStorhaug Jun 10, 2025
c62f342
Add initial test scripts for GitHub API interactions
MariusStorhaug Jun 10, 2025
18ea816
🩹 [Cleanup]: Remove unnecessary skip configurations from PSModule.yml
MariusStorhaug Jun 10, 2025
32e24b9
asd
MariusStorhaug Jun 11, 2025
0c50725
qwe
MariusStorhaug Jun 11, 2025
b8b7770
asd
MariusStorhaug Jun 12, 2025
bc80b48
wqer
MariusStorhaug Jun 12, 2025
1067c4f
Fix debug
MariusStorhaug Jun 12, 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
Prev Previous commit
Next Next commit
🩹 [Fix]: Adjust event assignment in GitHubApp and GitHubAppInstallati…
…on constructors for consistent array handling
  • Loading branch information
MariusStorhaug committed Jun 10, 2025
commit d38be5c724e4ca1f6fd6f5a159bee64e628dfee3
2 changes: 1 addition & 1 deletion src/classes/public/App/GitHubApp.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class GitHubApp : GitHubNode {
$this.CreatedAt = $Object.created_at
$this.UpdatedAt = $Object.updated_at
$this.Permissions = $Object.permissions
$this.Events = ,($Object.events)
$this.Events = , ($Object.events)
$this.Installations = $Object.installations_count
}
}
2 changes: 1 addition & 1 deletion src/classes/public/App/GitHubAppInstallation.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
$this.Type = $Object.target_type
$this.RepositorySelection = $Object.repository_selection
$this.Permissions = $Object.permissions
$this.Events = $Object.events
$this.Events = , ($Object.events)
$this.FilePaths = $Object.single_file_paths
$this.CreatedAt = $Object.created_at
$this.UpdatedAt = $Object.updated_at
Expand Down