mirror of
https://github.com/jazzband/.github.git
synced 2026-03-16 22:20:32 +00:00
28 lines
724 B
YAML
28 lines
724 B
YAML
name: Sync files (push)
|
|
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: BetaHuhn/repo-file-sync-action@v1.17.5
|
|
with:
|
|
GH_PAT: ${{ secrets.SYNC_TOKEN }}
|
|
TEAM_REVIEWERS: roadies
|
|
COMMIT_PREFIX: "Jazzband:"
|
|
BRANCH_PREFIX: "jazzband/sync"
|
|
COMMIT_EACH_FILE: true
|
|
GIT_EMAIL: jazzband-bot@users.noreply.github.com
|
|
GIT_USERNAME: jazzband-bot
|
|
DRY_RUN: true
|
|
OVERWRITE_EXISTING_PR: true
|
|
SKIP_PR: true
|
|
CONFIG_PATH: .github/sync/push.yml
|