-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (34 loc) · 1.01 KB
/
propagate.yml
File metadata and controls
39 lines (34 loc) · 1.01 KB
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
name: Propagate to mirrors
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 3
if: github.repository == 'riboseinc/oss-guides'
strategy:
matrix:
repository:
- fontist/oss-guides
- geolexica/oss-guides
- glossarist/oss-guides
- interscript/oss-guides
- ituob/oss-guides
- lutaml/oss-guides
- metanorma/oss-guides
- plurimath/oss-guides
- relaton/oss-guides
- rnpgp/oss-guides
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.RIBOSE_CI_OSS_GUIDE_TOKEN }}
repository: ${{ matrix.repository }}