You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo"ERROR: Neither TEST_GITHUB_APP_PRIVATE_KEY_FILE nor TEST_GITHUB_APP_PRIVATE_KEY was specified."
234
+
echo" Either provide a value or skip this test (SKIP_GITHUB_APP_TEST=true)."
235
+
exit 1
226
236
fi
227
237
228
238
# Validate all required environment variables for the github-app-auth tests are provided.
229
239
forvarin"${required_env_vars[@]}";do
230
240
if [[ ! -v "${var}" ]];then
231
-
echo"Error: Required environment variable '${var}' is not set or empty. Either provide a value or skip the GitHub App test by setting SKIP_GITHUB_APP_TEST to 'true'."
241
+
echo"ERROR: Required environment variable '${var}' is not set."
242
+
echo" Either provide a value or skip this test (SKIP_GITHUB_APP_TEST=true)."
232
243
exit 1
233
244
fi
234
245
done
235
246
236
247
# Mount the GitHub App private key file to the git-sync container
0 commit comments