Skip to content

Commit

Permalink
Add an action to sync the wiki repos
Browse files Browse the repository at this point in the history
  • Loading branch information
orta committed Nov 12, 2019
1 parent dbca772 commit c888fbb
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Sync to Dot Wiki
on:
push:
branches: [master]

jobs:
sync:
runs-on: ubuntu-latest
steps:
- run: |
git config user.name "typescript-bot"
git config user.email "[email protected]"
git remote remove origin
git remote add origin https://[email protected]/microsoft/TypeScript-wiki.git > /dev/null 2>&1
git remote add upstream https://[email protected]/microsoft/TypeScript.wiki.git > /dev/null 2>&1
git fetch origin
git fetch upstream
git merge upstream/master --no-edit
git push origin HEAD:master > /dev/null 2>&1
git push upstream HEAD:master > /dev/null 2>&1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit c888fbb

Please sign in to comment.