Skip to content

Commit

Permalink
repository name fixed in ghcli scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
TomKovac committed Feb 13, 2025
1 parent 19b8be4 commit cccd97f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/_change_state.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[string]$newColumnName,
[bool]$doNotCheckOldColumnName = 0,
[string]$repoOwner = "Inxton",
[string]$repoName = "AXOpen",
[string]$repoName = "axsharp",
[string]$projectName = "simatic-ax"
)

Expand Down
2 changes: 1 addition & 1 deletion scripts/_create_issue_branch.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ if ([int]::TryParse($IssueId, [ref]$null))
# Construct the full path to _change_stateScriptPath.ps1
$_change_stateScriptPath = Join-Path -Path $scriptDir -ChildPath "_change_state.ps1"
# Call _change_state.ps1 with the parameters IssueId, oldColumnName, newColumnName,doNotCheckOldColumnName, repoOwner, repoName, projectName
& $_change_stateScriptPath -IssueId $issueID -oldColumnName "Ready" -newColumnName "In progress" -doNotCheckOldColumnName $doNotCheckOldColumnName -repoOwner "Inxton" -repoName "AXOpen" -projectName "simatic-ax"
& $_change_stateScriptPath -IssueId $issueID -oldColumnName "Ready" -newColumnName "In progress" -doNotCheckOldColumnName $doNotCheckOldColumnName -repoOwner "Inxton" -repoName "axsharp" -projectName "simatic-ax"
}
else {
Write-Output "Error: The issue ID '$IssueId' does not exist in the list of open issues."
Expand Down
2 changes: 1 addition & 1 deletion scripts/ready_for_review.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ else
# Construct the full path to _change_stateScriptPath.ps1
$_change_stateScriptPath = Join-Path -Path $scriptDir -ChildPath "_change_state.ps1"
# Call _change_state.ps1 with the parameters IssueId, oldColumnName, newColumnName,doNotCheckOldColumnName, repoOwner, repoName, projectName
& $_change_stateScriptPath -IssueId $issueID -oldColumnName "In progress" -newColumnName "In review" -doNotCheckOldColumnName $False -repoOwner "Inxton" -repoName "AXOpen" -projectName "simatic-ax"
& $_change_stateScriptPath -IssueId $issueID -oldColumnName "In progress" -newColumnName "In review" -doNotCheckOldColumnName $False -repoOwner "Inxton" -repoName "axsharp" -projectName "simatic-ax"
}
else
{
Expand Down

0 comments on commit cccd97f

Please sign in to comment.