Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NobyDa/Script
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: thanatos369/Script
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Sep 7, 2021

  1. Create sync-fork-repo.yml

    name: Sync main with upstream latest
    on:
      schedule:
        - cron:  '01 03 * * 3'
      workflow_dispatch:
    jobs:
      merge:
        runs-on: ubuntu-latest
        steps:
          - uses: actions/checkout@v2
          - name: Merge upstream
            run: |
              #git config --global user.name 'your-name'
              #git config --global user.email '[email protected]'
              # "git checkout master" is unnecessary, already here by default
              git pull --unshallow  # this option is very important, you would get
                                    # complains about unrelated histories without it.
                                    # (but actions/checkout@v2 can also be instructed
                                    # to fetch all git depth right from the start)
              git remote add upstream https://github.com/NobyDa/Script
              git fetch upstream
    © 2021 GitHub, Inc.
    thanatos369 authored Sep 7, 2021
    Configuration menu
    Copy the full SHA
    a7662a1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9482139 View commit details
    Browse the repository at this point in the history
Loading