mirror of
https://github.com/jazzband/.github.git
synced 2026-05-19 04:31:10 +00:00
Bumps [BetaHuhn/repo-file-sync-action](https://github.com/BetaHuhn/repo-file-sync-action) from 1.6.0 to 1.7.0. - [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.6.0...v1.7.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
25 lines
609 B
YAML
25 lines
609 B
YAML
name: Sync files
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
- name: Run GitHub File Sync
|
|
uses: BetaHuhn/repo-file-sync-action@v1.7.0
|
|
with:
|
|
GH_PAT: ${{ secrets.SYNC_TOKEN }}
|
|
ASSIGNEES: jezdez
|
|
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
|