Skip to content

Commit 0bd8115

Browse files
committed
fix gh-workflow-ci.sh script
fix ordering when passing the arguments for create_pac_github_app_secret.
1 parent 6bdc43d commit 0bd8115

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hack/gh-workflow-ci.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
set -eufo pipefail
44

55
create_pac_github_app_secret() {
6-
local application_id="${1}"
7-
local app_private_key="${2}"
6+
local app_private_key="${1}"
7+
local application_id="${2}"
88
local webhook_secret="${3}"
99
kubectl delete secret -n pipelines-as-code pipelines-as-code-secret || true
1010
kubectl -n pipelines-as-code create secret generic pipelines-as-code-secret \

0 commit comments

Comments
 (0)