From bb26730e7147190e4a4d6d2c68d6a6a7bf244bd4 Mon Sep 17 00:00:00 2001 From: GoldWater <62366173+GoldWaterFall@users.noreply.github.com> Date: Mon, 29 Jan 2024 01:28:14 +1100 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 59 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..932fb1e --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,59 @@ +name: Check & Merge Prompt + +on: + push: + branches: + - main + +jobs: + check: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.9 + + - name: Run check.py + run: | + python .ci/check.py + prompt_to_json: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + fetch-depth: 0 # 检出完整的提交历史 + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.9 # 指定所需的 Python 版本 + + - name: gpt_prompt to json + env: + folder_path: 'test/prompt/gpt_prompt' + output_path: 'tianji/prompt' + run: python .ci/prompt_to_json_for_CI.py + + - name: yiyan_prompt to json + env: + folder_path: 'test/prompt/yiyan_prompt' + output_path: 'tianji/prompt' + run: python .ci/prompt_to_json_for_CI.py + + - name: Merge the gpt_prompt + env: + gpt_folder_path: 'tianji/prompt/gpt_prompt' + gpt_output_json_path: 'tianji/prompt/gpt_prompt/all_gpt_prompt.json' + run: python .ci/build_all_gpt_prompt.py + + - name: Merge the yiyan_prompt + env: + yiyan_folder_path: 'tianji/prompt/yiyan_prompt' + yiyan_output_json_path: 'tianji/prompt/yiyan_prompt/all_yiyan_prompt.json' + run: python .ci/build_all_yiyan_prompt.py