Skip to content

Commit 0639bf2

Browse files
MoreToregithub-actions[bot]
authored andcommitted
Create auto_rebase.yaml
1 parent 5ab7b2e commit 0639bf2

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/auto_rebase.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Rebase Upstream
2+
3+
on:
4+
schedule:
5+
- cron: "0 * * * *"
6+
workflow_dispatch: # manual trigger from GitHub UI
7+
8+
jobs:
9+
sync:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
with:
14+
fetch-depth: 0 # fetch all commits (full history)
15+
- uses: imba-tjd/rebase-upstream-action@master
16+
with:
17+
upstream: commaai/opendbc
18+
branch: master

0 commit comments

Comments
 (0)