Skip to content

Sync Envoy

Sync Envoy #7438

Workflow file for this run

name: Sync Envoy
on:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read
jobs:
sync:
runs-on: ubuntu-22.04
permissions:
contents: write
if: |
${{
!contains(github.actor, '[bot]')
|| github.actor == 'sync-envoy[bot]'
}}
steps:
- id: appauth
uses: envoyproxy/toolshed/actions/appauth@598eacce15ab5f208102a2fd5669292868002701 # actions-v0.4.0
with:
key: ${{ secrets.ENVOY_CI_UPDATE_BOT_KEY }}
app_id: ${{ secrets.ENVOY_CI_UPDATE_APP_ID }}
# Checkout the repo
- name: 'Checkout Repository'
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
ref: main
fetch-depth: 0
token: ${{ steps.appauth.outputs.token }}
# Checkout the Envoy repo
- name: 'Checkout Repository'
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
repository: envoyproxy/envoy
ref: main
fetch-depth: 0
path: upstream
- run: mv upstream ../envoy
- name: Install libtinfo5
run: |
sudo apt-get update
sudo apt-get install -y libtinfo5
- run: ci/sync_envoy.sh
env:
ENVOY_SRC_DIR: ../envoy