File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -107,6 +107,31 @@ process {
107107 $gitHubEvent | Format-List
108108 }
109109
110+ LogGroup ' EventInfo - Sender' {
111+ $Sender = $gitHubEvent.sender
112+ $Sender | Format-List
113+ }
114+
115+ LogGroup ' EventInfo - Enterprise' {
116+ $Enterprise = $gitHubEvent.enterprise
117+ $Enterprise | Format-List
118+ }
119+
120+ LogGroup ' EventInfo - Organization' {
121+ $Organization = $gitHubEvent.organization
122+ $Organization | Format-List
123+ }
124+
125+ LogGroup ' EventInfo - Owner' {
126+ $Owner = $gitHubEvent.repository.owner
127+ $Owner | Format-List
128+ }
129+
130+ LogGroup ' EventInfo - Repository' {
131+ $Repository = $gitHubEvent.repository | Select-Object - ExcludeProperty owner
132+ $Repository | Format-List
133+ }
134+
110135 LogGroup ' Object' {
111136 [pscustomobject ]@ {
112137 Type = $env: GITHUB_EVENT_NAME
You can’t perform that action at this time.
0 commit comments