Skip to content

Commit c4424ab

Browse files
committed
CCM-10193 change to use GitHub app token
Signed-off-by: Tim Ireland <[email protected]>
1 parent cc04202 commit c4424ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/scripts/dispatch_internal_repo_workflow.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,15 @@ header=$( echo -n "${header_json}" | b64enc )
113113
payload_json="{
114114
\"iat\":${iat},
115115
\"exp\":${exp},
116-
\"iss\":\"${$CLIENT_ID}\"
116+
\"iss\":\"${APP_CLIENT_ID}\"
117117
}"
118118
# Payload encode
119119
payload=$( echo -n "${payload_json}" | b64enc )
120120

121121
# Signature
122122
header_payload="${header}"."${payload}"
123123
signature=$(
124-
openssl dgst -sha256 -sign <(echo -n "${$PEM_FILE}") \
124+
openssl dgst -sha256 -sign <(echo -n "${APP_PEM_FILE}") \
125125
<(echo -n "${header_payload}") | b64enc
126126
)
127127

0 commit comments

Comments
 (0)