gpt4 book ai didi

azerothcore - 如何使 fork 主分支与 azerothcore 主分支保持同步

转载 作者:行者123 更新时间:2023-12-04 08:57:05 25 4
gpt4 key购买 nike

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

最佳答案

你可以使用 GitHub Actions 来保持你的 fork 主分支同步:

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"
在 fork 存储库设置中创建 secret 。您可以在此处引用如何添加它们:
https://docs.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets#creating-encrypted-secrets-for-a-repository
就我而言,我创建了 secret GH_USERNAMEGH_TOKEN GH_USERNAME应该设置为您的 github 用户名。 GH_TOKEN应设置为您创建的个人访问 token 。
有关如何创建一个的信息,请参阅此处:
https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token

关于azerothcore - 如何使 fork 主分支与 azerothcore 主分支保持同步,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63768703/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com