如何保持 fork master 分支与 azerothcore master 分支同步

How to keep fork master branch in sync with azerothcore master branch

如何让我的 fork master 分支自动与 AzerothCore master 分支保持同步?

您可以使用 GitHub 操作来保持您的分支主分支同步:

on:
  schedule:
    - cron: "0 */6 * * *"
jobs:
  repo-sync:
    runs-on: ubuntu-latest
    steps:
    - name: repo-sync
      uses: wei/git-sync@v2
      with:
        source_repo: "https://github.com/azerothcore/azerothcore-wotlk.git"
        source_branch: "master"
        destination_repo: "https://${{ secrets.GH_USERNAME }}:${{ secrets.GH_TOKEN }}@github.com/${{ secrets.GH_USERNAME }}/azerothcore-wotlk.git"
        destination_branch: "master"

在分叉回购设置中创建秘密。您可以在此处参考如何添加它们: https://docs.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets#creating-encrypted-secrets-for-a-repository

在我的例子中,我创建了秘密 GH_USERNAMEGH_TOKEN

GH_USERNAME 应设置为您的 github 用户名。

GH_TOKEN 应设置为您创建的个人访问令牌。

有关如何创建一个的信息,请参阅此处: https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token