feat-Drools规则引擎 #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 同步代码到Gitee | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| repo-sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 检出代码 | |
| uses: actions/checkout@v4 | |
| - name: 将 Github 组织仓库镜像到 Gitee | |
| uses: Yikun/hub-mirror-action@master | |
| with: | |
| src: 'github/LCG0214' # 这里改为自己github账号名称,如github/xiaoming | |
| dst: 'gitee/lichungui' # 这里改为gitee上账号名称,如gitee/xiaoming | |
| dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 这是生成的私钥 | |
| dst_token: ${{ secrets.GITEE_TOKEN }} # 这是gitee上生成的token | |
| force_update: true | |
| static_list: "study-code" # 同步的仓库名称(忽略大小写) | |
| debug: true |