forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 939 Bytes
/
garbage.yml
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
name: Garbage collection
permissions:
contents: read
on:
schedule:
- cron: '0 0 * * *'
concurrency:
group: ${{ github.head_ref || github.run_id }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
azp-agents:
runs-on: ubuntu-22.04
if: github.repository == 'envoyproxy/envoy'
strategy:
matrix:
include:
- target: envoy-arm-large
pool-id: 21
- target: envoy-arm-small
pool-id: 24
- target: envoy-x64-large
pool-id: 20
- target: envoy-x64-small
pool-id: 23
- target: salvo-control
pool-id: 22
- target: x64-nano
pool-id: 17
steps:
- name: Remove dead AZP agents (${{ matrix.target }})
uses: envoyproxy/toolshed/gh-actions/azp/[email protected]
with:
azp-org: cncf
azp-token: ${{ secrets.AZP_TOKEN }}
pool-id: ${{ matrix.pool-id }}