add upstream sync
Some checks failed
CI / validate (push) Successful in 1m0s
CI / typescript-action (push) Has been cancelled

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2025-02-01 16:41:46 -05:00
parent 0ba1118664
commit 74d7f019a7
No known key found for this signature in database
GPG Key ID: 47940175096C1330

18
.github/workflows/upstream_sync.yml vendored Normal file
View File

@ -0,0 +1,18 @@
# .github/workflows/sync.yml
name: Rebase Upstream
on:
schedule:
- cron: "0 0 * * 0" # run once a week
workflow_dispatch: # run manually
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 10 # greater than the number of commits you made
- uses: imba-tjd/rebase-upstream-action@master
with: # all args are optional
upstream: DeterminateSystems/update-flake-lock
branch: main