{"id":13592949,"url":"https://github.com/dromara/issues-translate-action","last_synced_at":"2026-04-22T22:02:24.799Z","repository":{"id":38224341,"uuid":"311689115","full_name":"dromara/issues-translate-action","owner":"dromara","description":"The action for translating Non-English issues content to English.","archived":false,"fork":false,"pushed_at":"2024-03-07T04:02:06.000Z","size":978,"stargazers_count":220,"open_issues_count":16,"forks_count":34,"subscribers_count":5,"default_branch":"main","last_synced_at":"2026-04-21T09:36:46.018Z","etag":null,"topics":["action","issues","translation","translator"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dromara.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"custom":["https://hertzbeat.com/docs/others/sponsor/"]}},"created_at":"2020-11-10T14:46:27.000Z","updated_at":"2026-03-27T13:41:39.000Z","dependencies_parsed_at":"2024-06-08T20:02:25.862Z","dependency_job_id":"36ce844f-8b0a-48a7-a4b9-4c21c2118e4c","html_url":"https://github.com/dromara/issues-translate-action","commit_stats":{"total_commits":68,"total_committers":3,"mean_commits":"22.666666666666668","dds":0.05882352941176472,"last_synced_commit":"b41f55ddc81d7d54bd542a4f289fe28ec081898e"},"previous_names":["usthe/issues-translate-action"],"tags_count":12,"template":false,"template_full_name":"actions/typescript-action","purl":"pkg:github/dromara/issues-translate-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dromara%2Fissues-translate-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dromara%2Fissues-translate-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dromara%2Fissues-translate-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dromara%2Fissues-translate-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dromara","download_url":"https://codeload.github.com/dromara/issues-translate-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dromara%2Fissues-translate-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32156606,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-22T17:06:48.269Z","status":"ssl_error","status_checked_at":"2026-04-22T17:06:19.037Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["action","issues","translation","translator"],"created_at":"2024-08-01T16:01:14.986Z","updated_at":"2026-04-22T22:02:24.756Z","avatar_url":"https://github.com/dromara.png","language":"TypeScript","funding_links":["https://hertzbeat.com/docs/others/sponsor/"],"categories":["TypeScript"],"sub_categories":[],"readme":"# Issues Translate Action  \n\nThe action for translating Non-English issues content to English.   \n\n[中文文档](README_CN.md)   \n\n## Usage  \n\n\u003e Use the default bot account @Issues-translate-bot  \n\n#### Create a workflow from this action   \n\n\u003e Create file issue-translator.yml in .github/workflows/     \n\n````\nname: 'issue-translator'\non: \n  issue_comment: \n    types: [created]\n  issues: \n    types: [opened]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: usthe/issues-translate-action@v2.7\n        with:\n          IS_MODIFY_TITLE: false\n          # not require, default false, . Decide whether to modify the issue title\n          # if true, the robot account @Issues-translate-bot must have modification permissions, invite @Issues-translate-bot to your project or use your custom bot.\n          CUSTOM_BOT_NOTE: Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑‍🤝‍🧑👫🧑🏿‍🤝‍🧑🏻👩🏾‍🤝‍👨🏿👬🏿\n          # not require. Customize the translation robot prefix message.\n````\n\n\n## Advanced Custom   \n\n\u003e Use your own bot by add BOT_GITHUB_TOKEN   \n\u003e \n\n1. Create a new github account as your bot  \n\n2. Use the account to generate a new token as BOT_GITHUB_TOKEN  \n\n3. Add the Secrets BOT_GITHUB_TOKEN = ${token} in your project  \n\n4. Create a workflow from this action(Create file issue-translator.yml in .github/workflows/)    \n\n````\nname: 'issue-translator'\non: \n  issue_comment: \n    types: [created]\n  issues: \n    types: [opened]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: usthe/issues-translate-action@v2.7\n        with:\n          BOT_GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} \n          # Required, input your bot github token\n          BOT_LOGIN_NAME: Issues-translate-bot    \n          # Not required, suggest not input, action will get name from BOT_GITHUB_TOKEN\n          # If input, BOT name must match github token\n````\n\n\n## Other   \n\n1. invite @Issues-translate-bot to your project.    \nProject -\u003e Settings -\u003e Manage access -\u003e Invite a collaborator   \nPost an issue in [issues-translate-action](https://github.com/tomsun28/issues-translate-action) to let us know, the @Issues-translate-bot will join soon.    \n\n## DEMO  \n\n![action-sample](dist/action-sample.png)   \n\n## Who Use the Action?  \n\n1. [hertzbeat](https://github.com/dromara/hertzbeat) **Create By Us** - A real-time monitoring system with custom-monitor and agentless.\n2. [sureness](https://github.com/dromara/sureness) **Create By Us** - A simple and efficient security framework that focus on protection of API.\n3. [go-zero](https://github.com/zeromicro/go-zero) - A cloud-native Go microservices framework with cli tool for productivity.\n4. [dashy](https://github.com/Lissy93/dashy) - A self-hostable personal dashboard built for you.\n5. [wails](https://github.com/wailsapp/wails) - Create beautiful applications using Go\n6. [seata-go](https://github.com/seata/seata-go) - Go Implementation For Seata\n7. [rainbond](https://github.com/goodrain/rainbond) - Cloud native multi cloud application management platform\n8. [adempiere](https://github.com/adempiere/adempiere) - ADempiere Business Suite done the Bazaar way in an open and unabated fashion.\n9. [carbon](https://github.com/golang-module/carbon) - A simple, semantic and developer-friendly golang package for datetime\n10. [tabby](https://github.com/Eugeny/tabby) - A terminal for a more modern age\n11. [gorse](https://github.com/gorse-io/gorse) - An open source recommender system service written in Go\n\n**Have Fun!**  \n\n\n## Contributors ✨ \n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\"\u003e\u003ca href=\"http://hertzbeat.com\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/24788200?v=4?s=100\" width=\"100px;\" alt=\"tomsun28\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003etomsun28\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/usthe/issues-translate-action/commits?author=tomsun28\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#content-tomsun28\" title=\"Content\"\u003e🖋\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\"\u003e\u003ca href=\"https://allcontributors.org\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/46410174?v=4?s=100\" width=\"100px;\" alt=\"All Contributors\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAll Contributors\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/usthe/issues-translate-action/commits?author=all-contributors\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\"\u003e\u003ca href=\"https://dev.to/chenquan\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/20548053?v=4?s=100\" width=\"100px;\" alt=\"chen quan\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003echen quan\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/usthe/issues-translate-action/commits?author=chenquan\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdromara%2Fissues-translate-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdromara%2Fissues-translate-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdromara%2Fissues-translate-action/lists"}