Skip to content

Update Upstream

Update Upstream #20

name: "Update Upstream"
on:
schedule:
- cron: "5 4 * * *"
workflow_dispatch:
jobs:
build:
name: Update Upstream
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.work
- run: go run mage updateUpstream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: git diff --exit-code
id: check-diff
continue-on-error: true
- name: create PR
if: steps.check-diff.outcome == 'failure'
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git checkout -b update-upstream-${{ github.run_id }}
git add .
git commit -m "Update to latest upstream"
git push -u origin -f update-upstream-${{ github.run_id }}
gh pr create --fill --head update-upstream-${{ github.run_id }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}