-
Notifications
You must be signed in to change notification settings - Fork 11
53 lines (51 loc) · 1.37 KB
/
assets-sync.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
41
42
43
44
45
46
47
48
49
50
51
52
53
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
# SPDX-License-Identifier: MIT
name: Sync Assets
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: sync CI configs
uses: at-wat/assets-sync-action@v0
with:
repos: |
pion/datachannel
pion/dtls
pion/example-webrtc-applications
pion/ice
pion/interceptor
pion/logging
pion/mdns
pion/opus
pion/peerconnection_explainer
pion/portmap
pion/randutil
pion/rtcp
pion/rtp
pion/sctp
pion/sdp
pion/simulnet
pion/srtp
pion/stun
pion/template
pion/transport
pion/turn
pion/webrtc
root_dir: ci
rm: |
.github/hooks/*
.github/workflows/renovate-go-mod-fix.yaml
.github/lint-*.sh
push_interval: 10
git_user: Pion Bot
git_email: [email protected]
github_token: ${{ secrets.PIONBOT_ASSETS_SYNC_TOKEN }}
commit_message: |
Update CI configs to %v
Update lint scripts and CI configs.