Skip to content

Commit a3166aa

Browse files
authored
ci: 👷 add synching workflow (#9)
# Description Forgot to add the actual synching workflow itself. <!-- Select quick/in-depth as necessary --> No review needed.
1 parent 72596a8 commit a3166aa

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/sync-files.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Sync files across repos
2+
on:
3+
push:
4+
branches:
5+
- main
6+
workflow_dispatch:
7+
8+
jobs:
9+
sync:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout Repository
13+
uses: actions/checkout@main
14+
15+
- name: Run GitHub File Sync
16+
uses: BetaHuhn/repo-file-sync-action@v1
17+
with:
18+
GH_PAT: ${{ secrets.SYNC_PAT }}
19+
ASSIGNEES: lwjohnst86
20+
IS_FINE_GRAINED: true
21+
GIT_USERNAME: lwjohnst86
22+
GIT_EMAIL: lwjohnst@gmail.com
23+
COMMIT_PREFIX: "chore(sync): :hammer: "
24+
BRANCH_PREFIX: chore
25+
TEAM_REVIEWERS: admin

0 commit comments

Comments
 (0)