Skip to content

Commit

Permalink
Create rebase-upstream.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit committed Sep 24, 2024
1 parent 790484c commit db346c4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/rebase-upstream.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# .github/workflows/rebase-upstream.yml
name: Rebase Upstream
on:
schedule:
- cron: "0 0 * * *" # run every midnight
workflow_dispatch: # run manually

jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 100 # greater than the number of commits you made
- uses: imba-tjd/rebase-upstream-action@master
with:
upstream: quickemu-project/quickemu # Change to upstream author/repo
branch: master

0 comments on commit db346c4

Please sign in to comment.