2021-06-23 12:59:47 +03:00
|
|
|
name: Sync Files
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2022-09-12 19:28:47 +03:00
|
|
|
- main
|
2021-06-23 12:59:47 +03:00
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
sync:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout Repository
|
2022-05-16 16:16:16 +03:00
|
|
|
uses: actions/checkout@v3
|
2021-06-23 12:59:47 +03:00
|
|
|
- name: Run GitHub File Sync
|
2022-09-12 19:28:47 +03:00
|
|
|
uses: Redocly/repo-file-sync-action@main
|
2021-06-23 12:59:47 +03:00
|
|
|
with:
|
2021-07-01 12:40:25 +03:00
|
|
|
GH_PAT: ${{ secrets.GH_PAT }}
|
2022-09-12 19:28:47 +03:00
|
|
|
COMMIT_PREFIX: 'sync:'
|
2021-07-02 18:14:26 +03:00
|
|
|
SKIP_PR: true
|