fix: remove toc #214
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: Synchronize Repositories | |
on: | |
# action can be manually triggered | |
workflow_dispatch: | |
# action is triggered on push to the following paths | |
push: | |
paths: | |
- 'templates/**' | |
- 'scripts/sync*' | |
- 'package.json' | |
- '.github/workflows/sync.yml' | |
branches: | |
- master | |
jobs: | |
milestone: | |
name: Synchronize Repositories | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- run: | | |
source ./scripts/sync.sh | |
install_dependencies_on_ci | |
configure_git_on_ci | |
workspace=$(create_workspace) | |
replicate_all "$workspace" "push" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_AENEASR }} |