Skip to content
git-branch

GitHub Action

Sync your forks

v1.0.4 Latest version

Sync your forks

git-branch

Sync your forks

Update your forks to their main repo

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Sync your forks

uses: sudo-bot/[email protected]

Learn more about this action in sudo-bot/action-fork-sync

Choose a version

Sync your forks

This action locks a pull-request

Example usage

  - name: sync my fork
    uses: sudo-bot/[email protected]
    with:
        branches: master, STABLE, next
        source-url: "https://${{ secrets.BOT_TOKEN }}:[email protected]/orgname/officialproject.git"
        # Give repo scope to token and access to myname/officialproject-fork for a token user != myname (eg: a bot)
        fork-url: "https://${{ secrets.BOT_TOKEN }}:[email protected]/myname/officialproject-fork.git"
        dry-run: "true" # remove this line to make sync effective
        clone-depth: "100" # optional, defaults to 100
        sync-method: "fast-forward" # optional, defaults to "fast-forward". Can be "rebase", "merge" or "fast-forward".