-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(devops): 👷 add synching of files (#4)
## Description Adding synching capabilities. ## Reviewer Focus This PR needs a quick review.
- Loading branch information
1 parent
81876a3
commit 2236053
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
group: | ||
# All repositories | ||
- files: | ||
- source: .github/workflows/assign-pr-to-creator.yml | ||
dest: .github/workflows/assign-pr-to-creator.yml | ||
repos: | | ||
rostools/cog-flow-intro | ||
rostools/r-pkg-intro | ||
rostools/r-cubed-intro | ||
rostools/r-cubed-intermediate | ||
rostools/r-cubed-advanced | ||
rostools/rostools | ||
rostools/r3 | ||
rostools/r3admin | ||
rostools/r-cubed | ||
rostools/r3-theme | ||
rostools/admin | ||
rostools/prodigenr | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Sync files across repos | ||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
sync: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@main | ||
|
||
- name: Run GitHub File Sync | ||
uses: BetaHuhn/repo-file-sync-action@v1 | ||
with: | ||
GH_PAT: ${{ secrets.SYNC_PAT }} | ||
ASSIGNEES: lwjohnst86 | ||
IS_FINE_GRAINED: true | ||
GIT_USERNAME: lwjohnst86 | ||
GIT_EMAIL: lwjohnst@gmail.com | ||
COMMIT_PREFIX: "chore(sync): :hammer: " | ||
BRANCH_PREFIX: chore | ||
|