21 lines
447 B
YAML
21 lines
447 B
YAML
name: Sync Docs Branch
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
repo-sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
persist-credentials: false
|
|
- name: repo-sync
|
|
uses: repo-sync/github-sync@v2
|
|
with:
|
|
source_repo: "airbytehq/airbyte"
|
|
source_branch: "master"
|
|
destination_branch: "gitbook/v1"
|
|
github_token: ${{ secrets.SLASH_COMMAND_PAT }}
|