Disable CICD Envoy check (#20388)

Disable Envoy version check.

The current version of this script does not work well with the LTS release having a much
longer list of supported Envoy versions than the other branches. Later on, we should
tweak this to have the expected behavior, but for now, it is being disabled so that the
CICD pipeline can complete successfully and publish images.
pull/20348/head
Derek Menteer 2024-01-29 13:00:02 -06:00 committed by GitHub
parent 6406f8494b
commit 9bde1300d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -12,7 +12,8 @@ on:
push:
branches:
- main
- release/**
# Disabled due to 1.15 having a much longer list of Envoy versions it supports with its LTS lifecycle.
#- release/**
jobs:
verify-envoy-version:
@ -25,4 +26,4 @@ jobs:
- name: Run Envoy Version Verification for main and release branches
run: ./.github/scripts/verify_envoy_version.sh
env:
GITHUB_TOKEN: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ELEVATED_GITHUB_TOKEN }}