create-human.sh 脚本,在邀请第二个human用户之后,大概率会失败 || create-human.sh script will most likely fail after inviting the second human user. #1126
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Translate GitHub Content into English | |
| on: | |
| issues: | |
| types: [opened] | |
| issue_comment: | |
| types: [created] | |
| discussion: | |
| types: [created, edited] | |
| discussion_comment: | |
| types: [created, edited] | |
| pull_request_target: | |
| types: [opened, edited] | |
| pull_request_review_comment: | |
| types: [created, edited] | |
| jobs: | |
| translate: | |
| permissions: | |
| issues: write | |
| discussions: write | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: lizheming/github-translate-action@main | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| APPEND_TRANSLATION: true |