diff --git a/src/functions/public/Actions/Workflow/Disable-GitHubWorkflow.ps1 b/src/functions/public/Actions/Workflow/Disable-GitHubWorkflow.ps1 index 422c532f1..7816daf52 100644 --- a/src/functions/public/Actions/Workflow/Disable-GitHubWorkflow.ps1 +++ b/src/functions/public/Actions/Workflow/Disable-GitHubWorkflow.ps1 @@ -37,7 +37,7 @@ ValueFromPipelineByPropertyName )] [Alias('DatabaseID', 'WorkflowID')] - [UInt64] $ID, + [string] $ID, # The context to run the command in. Used to get the details for the API call. # Can be either a string or a GitHubContext object. diff --git a/src/functions/public/Actions/Workflow/Enable-GitHubWorkflow.ps1 b/src/functions/public/Actions/Workflow/Enable-GitHubWorkflow.ps1 index d2ac769ef..ad224ca8b 100644 --- a/src/functions/public/Actions/Workflow/Enable-GitHubWorkflow.ps1 +++ b/src/functions/public/Actions/Workflow/Enable-GitHubWorkflow.ps1 @@ -34,7 +34,7 @@ ValueFromPipelineByPropertyName )] [Alias('DatabaseID', 'WorkflowID')] - [UInt64] $ID, + [string] $ID, # The context to run the command in. Used to get the details for the API call. # Can be either a string or a GitHubContext object. diff --git a/src/functions/public/Actions/Workflow/Get-GitHubWorkflowUsage.ps1 b/src/functions/public/Actions/Workflow/Get-GitHubWorkflowUsage.ps1 index cdefff520..13f2a36c0 100644 --- a/src/functions/public/Actions/Workflow/Get-GitHubWorkflowUsage.ps1 +++ b/src/functions/public/Actions/Workflow/Get-GitHubWorkflowUsage.ps1 @@ -34,7 +34,7 @@ ValueFromPipelineByPropertyName )] [Alias('DatabaseID', 'WorkflowID')] - [UInt64] $ID, + [string] $ID, # The context to run the command in. Used to get the details for the API call. # Can be either a string or a GitHubContext object. diff --git a/src/functions/public/Actions/Workflow/Start-GitHubWorkflow.ps1 b/src/functions/public/Actions/Workflow/Start-GitHubWorkflow.ps1 index 8a69f9228..70de05d5b 100644 --- a/src/functions/public/Actions/Workflow/Start-GitHubWorkflow.ps1 +++ b/src/functions/public/Actions/Workflow/Start-GitHubWorkflow.ps1 @@ -39,7 +39,7 @@ ValueFromPipelineByPropertyName )] [Alias('DatabaseID', 'WorkflowID')] - [UInt64] $ID, + [string] $ID, # The reference of the workflow run. The reference can be a branch, tag, or a commit SHA. [Parameter()]