Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
disc

GitHub Action

Issues Translator

v1.1

Issues Translator

disc

Issues Translator

The action for translating Non-English issues content to English

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Issues Translator

uses: dromara/[email protected]

Learn more about this action in dromara/issues-translate-action

Choose a version

Issues Translate Action

The action for translating non-English issues comment content to English.

Usage

Create a workflow from this action

name: 'issue-comment-translator'
on: # only support issue_comment
  issue_comment:
    branches:
      - main

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: tomsun28/issues-translate-action@v1
          

Custom

Create a workflow from this action

name: 'issue-comment-translator'
on: # only support issue_comment
  issue_comment:
    branches:
      - main

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: tomsun28/issues-translate-action@v1
        with:
          BOT_GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} # required, input your bot github token
          # BOT_LOGIN_NAME: nameValue - not required, suggest not input, action will get name from BOT_GITHUB_TOKEN
          

Have Fun!