Skip to content

Merge branch 'master' of https://github.com/chrisisth/pvpoke-limitless #66

Merge branch 'master' of https://github.com/chrisisth/pvpoke-limitless

Merge branch 'master' of https://github.com/chrisisth/pvpoke-limitless #66

Workflow file for this run

name: Update Fork
jobs:
update-fork:
runs-on: ubuntu-latest
steps:
- name: Checkout Fork
uses: actions/checkout@v4
with:
repository: chrisisth/pvpoke-limitless
token: ${{ secrets.GITHUB_TOKEN }}
- name: Configure Git
run: |
git config user.name "chrisisth"
git config user.email "chris73757@gmail.com"
- name: Setup Upstream
run: git remote add upstream https://github.com/pvpoke/pvpoke.git
- name: Fetch Upstream
run: git fetch upstream
- name: Merge Upstream
run: git merge upstream/master --allow-unrelated-histories
- name: Push Changes
run: git push origin master