From 366bd0afbefa00fa6520a8854e4e9a0734ecca77 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Thu, 22 Jul 2021 23:30:40 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Adds=20GH=20action=20to=20transl?= =?UTF-8?q?ate=20foreign=20language=20issues?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/issue-translator.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/issue-translator.yml diff --git a/.github/workflows/issue-translator.yml b/.github/workflows/issue-translator.yml new file mode 100644 index 00000000..fd5b9c8e --- /dev/null +++ b/.github/workflows/issue-translator.yml @@ -0,0 +1,16 @@ +# Will translate any issues opened in foraign language, and add the English translation as a comment +name: 'Issue Translator' +on: + issue_comment: + types: [created] + issues: + types: [opened] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: tomsun28/issues-translate-action@v2.5 + with: + BOT_GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} + BOT_LOGIN_NAME: Issues-translate-bot