Sync Fork with Upstream #14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Sync Fork with Upstream | |
| on: | |
| schedule: | |
| - cron: '0 0 * * 1' # Runs every Monday at 00:00 UTC | |
| workflow_dispatch: | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Sync fork with upstream | |
| uses: garmr-ulfr/fork-sync@request-pr-reviewers | |
| with: | |
| # The owner of your forked repository | |
| owner: getlantern | |
| # The name of your forked repository | |
| repo: sing | |
| # The name of the branch where your changes are implemented. | |
| head: main | |
| # The name of the branch you want the changes pulled into. | |
| base: lantern-main | |
| merge_method: merge | |
| auto_merge: false | |
| pr_title: 'Automated Fork Sync from Upstream' | |
| pr_message: 'This pull request was automatically generated to sync the `lantern-main` branch with the `main` branch from `sagernet/sing`.' | |
| pr_reviewers: 'myleshorton,garmr-ulfr' |