Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 0 additions & 1 deletion .github/workflows/Action-Test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# checkov:skip=CKV_GHA_7:Using tag references for better readability and maintenance
name: Action-Test

run-name: "Action-Test - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/TestWorkflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ on:
required: false
type: boolean
default: false
Owner:
description: The owner of the repository
required: false
type: string
default: PSModule
secrets:
TEST_USER_PAT:
description: Personal Access Token for the test user
Expand Down Expand Up @@ -412,7 +417,7 @@ jobs:
}

LogGroup 'Get-GitHubRepository' {
Get-GitHubRepository | Out-String
Get-GitHubRepository -Owner '${{ inputs.Owner }}' | Out-String
}

ActionTestWithUSERFGPAT:
Expand All @@ -438,7 +443,7 @@ jobs:
}

LogGroup 'Get-GitHubRepository' {
Get-GitHubRepository | Out-String
Get-GitHubRepository -Owner '${{ inputs.Owner }}' | Out-String
}

ActionTestWithORGFGPAT:
Expand All @@ -464,7 +469,7 @@ jobs:
}

LogGroup 'Get-GitHubRepository' {
Get-GitHubRepository | Out-String
Get-GitHubRepository -Owner '${{ inputs.Owner }}' | Out-String
}

ActionTestWithGitHubAppEnt:
Expand Down
Loading