0

我有一个分叉存储库,并且有一个每周触发的工作流程,以合并从远程到主要的更改。
除了添加工作流之外,不会在 repo 上做任何事情(有点像镜子)。
我很可能会分叉其他人的仓库,因此无法访问上游提交的工作流程。(例如,分叉Youtube-dl和同步作为备份)

似乎存在一些合并冲突,即使当我在本地执行相同的步骤(设置 git 用户名和电子邮件除外)时,也没有合并冲突。
本地收到合并消息提示以确认合并消息)。
[Github 操作日志] [本地日志]

是我的 YAML 文件,
它检查 repo,设置上游,获取和合并,最后推送更改为 main。

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Set upstream
        run: git remote add upstream https://github.com/dabreadman/go-web-proxy.git
      - name: Set email
        run: git config --local user.email "action@github.com"
      - name: Set username
        run: git config --local user.name "GitHub Action"
      - name: Fetch upstream
        run: git fetch upstream
      - name: Merge upstream
        run: git merge upstream/main --allow-unrelated-histories
      - name: Push changes 
        run: git push 
4

0 回答 0