Skip to content

Commit

Permalink
add test repo sync action
Browse files Browse the repository at this point in the history
  • Loading branch information
robdodson committed Dec 17, 2020
1 parent 63fd880 commit 2abc9f9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/repo-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on:
workflow_dispatch:

jobs:
repo-sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: repo-sync
uses: repo-sync/github-sync@v2
with:
source_repo: "GoogleChrome/developer.chrome.com"
source_branch: "main"
destination_branch: "test-sync"
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2abc9f9

Please sign in to comment.