-
Notifications
You must be signed in to change notification settings - Fork 268
51 lines (44 loc) · 1.14 KB
/
envoy-sync.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Sync Envoy
on:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read
jobs:
sync:
runs-on: ubuntu-20.04
permissions:
contents: write
if: |
${{
!contains(github.actor, '[bot]')
|| github.actor == 'sync-envoy[bot]'
}}
steps:
- id: appauth
uses: envoyproxy/toolshed/gh-actions/appauth@actions-v0
with:
key: ${{ secrets.ENVOY_CI_UPDATE_BOT_KEY }}
app_id: ${{ secrets.ENVOY_CI_UPDATE_APP_ID }}
- name: 'Checkout Repository'
uses: actions/checkout@v3
with:
ref: main
token: ${{ steps.appauth.outputs.value }}
fetch-depth: 0
# Checkout the Envoy repo
- name: 'Checkout Envoy Repository'
uses: actions/checkout@v3
with:
repository: envoyproxy/envoy
ref: main
fetch-depth: 0
path: upstream
- run: mv upstream ../envoy
- run: ci/sync_envoy.sh
env:
ENVOY_SRC_DIR: ../envoy
GITHUB_EMAIL: "135279899+update-envoy[bot]@users.noreply.github.com"
GITHUB_NAME: "update-envoy[bot]"