From 0748ea2b97c16e09912d6a5bc158add469628501 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 02:21:21 +0000 Subject: [PATCH] feat: Add GitHub Action to translate issues --- .github/workflows/translate_issues.yml | 17 +++++++++++++++++ 1 file changed, 17 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 00000000..ae21ad56 --- /dev/null +++ b/.github/workflows/translate_issues.yml @@ -0,0 +1,17 @@ +name: Translate Issues + +on: + issues: + types: [opened] + +jobs: + translate: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Translate issue + uses: usthe/issues-translate-action@v2.7 + with: + token: ${{ secrets.GITHUB_TOKEN }}