From ca60425784dd74f66c31df685695c3d9d6921401 Mon Sep 17 00:00:00 2001 From: Xuefei Li Date: Mon, 27 Oct 2025 11:08:26 +0800 Subject: [PATCH] Add translate-issues workflow configuration --- .github/workflows/translate-issues.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/translate-issues.yml diff --git a/.github/workflows/translate-issues.yml b/.github/workflows/translate-issues.yml new file mode 100644 index 0000000000..c783876878 --- /dev/null +++ b/.github/workflows/translate-issues.yml @@ -0,0 +1,16 @@ +name: Auto Translate Issues + +on: + issue_comment: + types: [created] + issues: + types: [opened] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: dromara/issues-translate-action@v2.7 + with: + IS_MODIFY_TITLE: false +