We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e6d96c commit 4e3bfeaCopy full SHA for 4e3bfea
.github/workflows/ci.yaml
@@ -12,4 +12,26 @@ jobs:
12
steps:
13
- uses: actions/checkout@v4
14
- name: build and test
15
- run: make docker_tests
+ run: make docker_tests
16
+
17
+ sync:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ # Checkout the repo
21
+ - name: 'Checkout Repository'
22
+ uses: actions/checkout@v4
23
+ with:
24
+ path: go-control-plane
25
26
+ # Checkout the Envoy repo
27
28
29
30
+ repository: envoyproxy/envoy
31
+ ref: main
32
+ path: upstream
33
34
+ - run: ci/sync_envoy.sh
35
+ env:
36
+ ENVOY_SRC_DIR: ../envoy
37
+ working-directory: go-control-plane
0 commit comments