Skip to content

Commit

Permalink
Update script
Browse files Browse the repository at this point in the history
  • Loading branch information
Robot authored and Robot committed Oct 11, 2022
1 parent fc140e3 commit 3570e6e
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/update.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Update to Upstream

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "*/30 * * * *"

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: configure
run: |
git config --global user.name 'Robot'
git config --global user.email '[email protected]'
# "git checkout main" 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://fuchsia.googlesource.com/fuchsia/
git fetch upstream
git checkout main
git rebase upstream/main && git push -f origin main

0 comments on commit 3570e6e

Please sign in to comment.