Skip to content

Merge pull request #365 from AleoHQ/add/leo-core-devs-call #229

Merge pull request #365 from AleoHQ/add/leo-core-devs-call

Merge pull request #365 from AleoHQ/add/leo-core-devs-call #229

name: Sync Welcome Documentation - Master
on:
push:
paths:
- '**/documentation/**.md'
- '**/documentation/config.json'
branches:
- 'master'
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Fetch branch name
run: echo Running on branch ${GITHUB_REF#refs/heads/}
- name: Sync repository
run: |
curl \
-X POST \
-u "${{ secrets.SYNC_USERNAME }}:${{ secrets.SYNC_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/${{ secrets.SYNC_ORGANIZATION }}/${{ secrets.SYNC_APPLICATION }}/dispatches \
-d '{"event_type":"sync-welcome-documentation", "client_payload": { "branch": "'"${GITHUB_REF#refs/heads/}"'" }}'
- name: Temporary sync commands
run: |
curl \
-X POST \
-u "${{ secrets.SYNC_USERNAME }}:${{ secrets.SYNC_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/${{ secrets.SYNC_ORGANIZATION }}/${{ secrets.SYNC_APPLICATION_TWO }}/dispatches \
-d '{"event_type":"Synchronize"}'
curl \
-X POST \
-u "${{ secrets.SYNC_USERNAME }}:${{ secrets.SYNC_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/${{ secrets.SYNC_ORGANIZATION }}/${{ secrets.SYNC_APPLICATION_THREE }}/dispatches \
-d '{"event_type":"Synchronize"}'