consul/.github/workflows/verify-envoy-version.yml

31 lines
1.0 KiB
YAML
Raw Normal View History

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
# This action ensures that Envoy is up to date on main and release branches.
# This workflow is only triggered on the main and release branches and will
# only perform a version check when a new release branch is created
# Contact Consul team for any questions
name: Verify Envoy Version
on:
push:
branches:
- main
- release/**
env:
2023-10-19 23:47:57 +00:00
SKIP_VERIFY_ENVOY_VERSION: "false" ## temporarily disabled; set to true to disable script
jobs:
verify-envoy-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0 # by default the checkout action doesn't checkout all branches
- name: Run Envoy Version Verification for main and release branches
run: ./.github/scripts/verify_envoy_version.sh
env:
GITHUB_TOKEN: ${{ secrets.ELEVATED_GITHUB_TOKEN }}