mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-13 04:16:34 +03:00
19 lines
392 B
YAML
19 lines
392 B
YAML
name: Sync Files
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v3
|
|
- name: Run GitHub File Sync
|
|
uses: Redocly/repo-file-sync-action@main
|
|
with:
|
|
GH_PAT: ${{ secrets.GH_PAT }}
|
|
COMMIT_PREFIX: 'sync:'
|
|
SKIP_PR: true
|