17 lines
434 B
YAML
17 lines
434 B
YAML
# 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
|