mirror of
https://github.com/Redocly/redoc.git
synced 2025-03-15 15:32:21 +03:00
16 lines
335 B
YAML
16 lines
335 B
YAML
|
name: Sync Files
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
workflow_dispatch:
|
||
|
jobs:
|
||
|
sync:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout Repository
|
||
|
uses: actions/checkout@master
|
||
|
- name: Run GitHub File Sync
|
||
|
uses: Redocly/repo-file-sync-action
|
||
|
with:
|
||
|
GH_PAT: ${{ secrets.GH_PAT }}
|