Skip to content

Commit

Permalink
adding back translated stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuchitra532 committed Nov 16, 2023
1 parent b0f5ca7 commit 090a441
Showing 1 changed file with 33 additions and 41 deletions.
74 changes: 33 additions & 41 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,44 +7,36 @@ on:


jobs:
sync_latest_from_upstream:
runs-on: ubuntu-latest
name: Sync latest commits from upstream repo
steps:
- name: Checkout target repo
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN }}
persist-credentials: false
# - name: Sync upstream changes
# id: sync
# uses: aormsby/Fork-Sync-With-Upstream-action@v3.4
# with:
# target_sync_branch: develop
# # REQUIRED 'target_repo_token' exactly like this!
# target_repo_token: ${{ secrets.GH_TOKEN }}
# upstream_sync_branch: develop
# upstream_sync_repo: YoYoGames/GameMaker-Manual
# upstream_repo_access_token: ${{ secrets.GH_TOKEN }}
# git_config_user: ksuchitra532
# git_config_email: null
# git_config_pull_rebase: true
# - name: Sync upstream changes
# id: sync-lts
# uses: aormsby/Fork-Sync-With-Upstream-action@v3.4
# with:
# target_sync_branch: main-lts
# # REQUIRED 'target_repo_token' exactly like this!
# target_repo_token: ${{ secrets.GH_TOKEN }}
# upstream_sync_branch: main-lts
# upstream_sync_repo: YoYoGames/GameMaker-Manual
# upstream_repo_access_token: ${{ secrets.GH_TOKEN }}
- name: GitHub Sync to Upstream Repository
uses: rovast/sync-upstream-repo@v0.0.1
with:
upstream_repo: https://github.com/YoYoGames/GameMaker-Manual # change this
upstream_branch: develop # change this
downstream_branch: develop # change this
token: ${{ secrets.GH_TOKEN }}

sync_latest_from_upstream:
runs-on: ubuntu-latest
name: Sync latest commits from upstream repo
steps:
- name: Checkout target repo
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN }}
persist-credentials: false
- name: Sync upstream changes
id: sync
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4
with:
target_sync_branch: develop
# REQUIRED 'target_repo_token' exactly like this!
target_repo_token: ${{ secrets.GH_TOKEN }}
upstream_sync_branch: develop
upstream_sync_repo: YoYoGames/GameMaker-Manual
upstream_repo_access_token: ${{ secrets.GH_TOKEN }}
git_config_user: ksuchitra532
git_config_email: null
git_config_pull_rebase: true
- name: Sync upstream changes
id: sync-lts
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4
with:
target_sync_branch: main-lts
# REQUIRED 'target_repo_token' exactly like this!
target_repo_token: ${{ secrets.GH_TOKEN }}
upstream_sync_branch: main-lts
upstream_sync_repo: YoYoGames/GameMaker-Manual
upstream_repo_access_token: ${{ secrets.GH_TOKEN }}

0 comments on commit 090a441

Please sign in to comment.