Separate Rails-related rules out into another output guide #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |