Skip to content

Commit

Permalink
Add daily rebase upstream action
Browse files Browse the repository at this point in the history
  • Loading branch information
ozars authored and github-actions[bot] committed Aug 25, 2024
1 parent 8b3fdec commit 5b0df49
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Based on:
# - https://github.com/marketplace/actions/rebase-upstream
# - https://github.com/imba-tjd/rebase-upstream-action
name: Rebase Upstream
on:
schedule:
- cron: "0 0 * * *" # run everyday
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: ozars/rebase-upstream-action@master

0 comments on commit 5b0df49

Please sign in to comment.