Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 772 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 772 Bytes

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".