We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c6373e commit 5ae1a86Copy full SHA for 5ae1a86
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,24 @@
1
+name: Build
2
+
3
+permissions:
4
+ contents: read
5
6
+on:
7
+ pull_request:
8
+ push:
9
+ branches:
10
+ - main
11
12
+concurrency:
13
+ group: >-
14
+ ${{ github.event.inputs.head_ref || github.run_id }}
15
16
17
+jobs:
18
+ build:
19
+ runs-on: ubuntu-24.04
20
+ if: github.repository_owner == 'envoyproxy'
21
+ steps:
22
+ - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
23
+ - run: |
24
+ ./build-repository.sh
0 commit comments