skip envoy version check in ci (#19315)

This commit is contained in:
Anita Akaeze 2023-10-20 11:09:31 -07:00 committed by GitHub
parent 1280f45485
commit b962d91056
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -18,7 +18,7 @@ if [ -z "$current_branch" ]; then
fi
if [[ "$SKIP_VERIFY_ENVOY_VERSION" = "true" ]]; then
echo -e "*************** VERIFY ENVOY VERSION IS DISABLED. To enable, set the environment variable SKIP_VERIFY_ENVOY_VERSION to false in .github/workflows/verify-envoy-version.yml *****************"
echo -e "*************** VERIFY ENVOY VERSION IS DISABLED. To enable, update environment variable in Github settings *****************"
exit 0
fi

View File

@ -13,9 +13,10 @@ on:
branches:
- main
- release/**
- disable_envoy_check
env:
SKIP_VERIFY_ENVOY_VERSION: "false" ## temporarily disabled; set to true to disable script
SKIP_VERIFY_ENVOY_VERSION: ${{ vars.SKIP_VERIFY_ENVOY_VERSION }}
jobs:
verify-envoy-version: