mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-21 02:40:08 +00:00
25 lines
502 B
YAML
25 lines
502 B
YAML
name: Sync Repos
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'website/**'
|
|
# - "template/**"
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@master
|
|
- name: Run GitHub File Sync
|
|
uses: BetaHuhn/repo-file-sync-action@v1
|
|
with:
|
|
GH_PAT: ${{ secrets.REPO_SYNC }}
|
|
GIT_EMAIL: to@itoh.at
|
|
GIT_USERNAME: itohatweb
|
|
SKIP_PR: true
|
|
COMMIT_EACH_FILE: false
|