-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(main): add translator for ci (#3264)
- Loading branch information
1 parent
73b168e
commit bfe8720
Showing
9 changed files
with
77 additions
and
29 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Ask a question (GitHub Discussions) | ||
url: https://github.com/labring/sealos/discussions | ||
about: | | ||
Please do not submit "a bug report" for asking a question. | ||
In most cases, GitHub Discussions is the best place to ask a question. | ||
If you are not sure whether you are going to report a bug or ask a question, | ||
please consider asking in GitHub Discussions first. | ||
- name: Join Our Discord | ||
url: https://discord.gg/eHyXHtSE | ||
about: Join our community, we will keep you in the loop. |
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: 'Github Rebot for issues-translator' | ||
on: | ||
issues: | ||
types: [ opened ] | ||
issue_comment: | ||
types: [ created ] | ||
jobs: | ||
translate: | ||
permissions: | ||
issues: write | ||
discussions: write | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: usthe/[email protected] | ||
with: | ||
IS_MODIFY_TITLE: true | ||
BOT_GITHUB_TOKEN: ${{ secrets.GH_PAT }} | ||
CUSTOM_BOT_NOTE: Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑🤝🧑👫🧑🏿🤝🧑🏻👩🏾🤝👨🏿👬🏿 |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
exclude_path = ["./CHANGELOG", "./docs/3.0"] | ||
verbose = "info" | ||
exclude_all_private = true | ||
insecure = true | ||
no_progress = true |