mirror of
https://github.com/jazzband/.github.git
synced 2026-05-16 11:13:12 +00:00
Bumps [BetaHuhn/repo-file-sync-action](https://github.com/BetaHuhn/repo-file-sync-action) from 1.17.5 to 1.17.7. - [Release notes](https://github.com/BetaHuhn/repo-file-sync-action/releases) - [Changelog](https://github.com/BetaHuhn/repo-file-sync-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/BetaHuhn/repo-file-sync-action/compare/v1.17.5...v1.17.7) --- updated-dependencies: - dependency-name: BetaHuhn/repo-file-sync-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
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.7
|
|
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
|