We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72596a8 commit a3166aaCopy full SHA for a3166aa
.github/workflows/sync-files.yml
@@ -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