Compare commits

..

No commits in common. "ee385717a33160eb303cba77062cc85d310f096b" and "18199deacd2f54cc11a372002077d030487b9a7b" have entirely different histories.

2 changed files with 21 additions and 40 deletions

View File

@ -1,33 +0,0 @@
name: Daily Sync to Gitee
on:
schedule:
- cron: '0 2 * * *' # 每天UTC时间2点执行北京时间10点
workflow_dispatch: # 支持手动触发
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/checkout@v4
- name: Configure Git
run: |
git config --global user.name "github-actions"
git config --global user.email "github-actions@github.com"
- name: Add Gitee remote and force push
env:
GITEE_USERNAME: zhudongjer
GITEE_TOKEN: 11f606dc48ee2c481918e169b2291fb3c4705cdf
run: |
# 添加 Gitee 远程地址HTTP + Token
git remote add gitee http://$GITEE_USERNAME:$GITEE_TOKEN@49.235.152.15:3000/$GITEE_USERNAME/carrot.git
# 强制推送当前分支(假设为 master
git push gitee master --force
# 推送标签(如果有)
git push gitee --tags

View File

@ -18,14 +18,28 @@ jobs:
token: ${{ secrets.GH_TOKEN }} # 访问 GitHub 需要的令牌
# 2. Add the source repositories as remotes and fetch branches
- name: Add upstream repositories and fetch branches
- name: Add upstream repository and fetch branches
run: |
git remote add upstream https://github.com/ajouatom/openpilot.git
git fetch upstream carrot2-v8 --no-tags
git fetch upstream v8-wip4 v8-wip4-da --no-tags
# 3. Push v8-wip4 branch to your repository
- name: Push carrot2-v8 branch to your repository
run: |
git checkout -B carrot2-v8 upstream/carrot2-v8
git push origin carrot2-v8 --force
git remote add mazda_upstream https://github.com/heqichen/qcpilot.git
git fetch mazda_upstream dev-cpp-selfdrived --no-tags
# 3. Push v8-wip4 branch to your repository
- name: Push v8-wip4 branch to your repository
run: |
git checkout -B v8-wip4 upstream/v8-wip4
git push origin v8-wip4 --force
# 4. Push v8-wip4-da branch to your repository
- name: Push v8-wip4-da branch to your repository
run: |
git checkout -B v8-wip4-da upstream/v8-wip4-da
git push origin v8-wip4-da --force
# 5. Push dev-cpp-selfdrivedt branch to your repository
- name: Push dev-cpp-selfdrived branch to your repository
run: |
git checkout -B dev-cpp-selfdrived mazda_upstream/dev-cpp-selfdrived
git push origin dev-cpp-selfdrived --force