diff --git a/README.en-US.md b/README.en-US.md
index 13d2159..4a5d21b 100644
--- a/README.en-US.md
+++ b/README.en-US.md
@@ -22,6 +22,56 @@ A GitHub Action that easily helps you automatically manage issues
> Private projects have a limit of 2000 times per month. [Specific view](https://github.com/settings/billing). Public are unlimited.
+## Who is using?
+
+Please leave a message at [**here**](https://github.com/actions-cool/issues-helper/issues/6).
+
+
+
## List
When the following list does not have the features you want, you can submit it in [What do you want?](https://github.com/actions-cool/issues-helper/discussions/18).
@@ -990,56 +1040,16 @@ Click the `···` icon in the upper right corner of a comment, select `Copy lin
## Actions Template
- You can directly use this [GitHub Actions workflow template](https://github.com/actions-cool/.github) repositorie template
-
- Personal exercises and tests [Actions](https://github.com/xrkffgg/test-ci) repository
+- Can also refer to the warehouse of [online users](#who-is-using)
-## 💖 Who is using?
+## ⚡ Feedback
-You can come to the following repositories for reference. Please leave a message at [**here**](https://github.com/actions-cool/issues-helper/issues/6).
+You are very welcome to try it out and put forward your comments. You can use the following methods:
-At the same time, if you have any questions during use, you can also ask and inquire in the issue or discussion.
-
-
+- Report bugs or consult with [Issue](https://github.com/actions-cool/issues-helper/issues)
+- Discuss via [Discussions](https://github.com/actions-cool/issues-helper/discussions)
+- Submit [Pull Request](https://github.com/actions-cool/issues-helper/pulls) to improve the code of `issues-helper`
## LICENSE
diff --git a/README.md b/README.md
index d522881..fc9ca1c 100644
--- a/README.md
+++ b/README.md
@@ -22,6 +22,56 @@
> Private 项目每月有 2000 次的限制,[具体查看](https://github.com/settings/billing)。Public 项目无限制。
+## 谁在使用?
+
+欢迎在 [**这里**](https://github.com/actions-cool/issues-helper/issues/6) 留言。
+
+
+
## 列 表
当以下列表没有你想要的功能时,可以在 [What do you want?](https://github.com/actions-cool/issues-helper/discussions/18) 中提出。
@@ -985,56 +1035,16 @@ x2 + y2
## Actions 模板
- 可直接使用这个 [GitHub Actions workflow template](https://github.com/actions-cool/.github) 仓库的模板
-
- 个人练习和测试 [Actions](https://github.com/xrkffgg/test-ci) 的仓库
+- 也可以来 [线上使用者](#谁在使用) 的仓库参照
-## 💖 谁在使用?
+## ⚡ 反馈
-你可以来以下项目进行参考。欢迎在 [**这里**](https://github.com/actions-cool/issues-helper/issues/6) 留言。
+非常欢迎你来尝试使用,并提出意见,你可以通过以下方式:
-同时,如果你在使用过程中有什么疑问,也可以在 issue 或者 discussion 中进行提问和查询。
-
-
+- 通过 [Issue](https://github.com/actions-cool/issues-helper/issues) 报告 bug 或进行咨询
+- 通过 [Discussions](https://github.com/actions-cool/issues-helper/discussions) 进行讨论
+- 提交 [Pull Request](https://github.com/actions-cool/issues-helper/pulls) 改进 `issues-helper` 的代码
## LICENSE
diff --git a/USERS.js b/USERS.js
index c8c5794..d1c08ae 100644
--- a/USERS.js
+++ b/USERS.js
@@ -31,6 +31,10 @@ const users = [
url: 'https://github.com/lijinke666/react-music-player',
logo: 'https://github.com/lijinke666/react-music-player/blob/master/assetsImg/logo.png?raw=true'
},
+ {
+ url: 'https://github.com/ant-design-blazor/ant-design-blazor',
+ logo: 'https://raw.githubusercontent.com/ant-design-blazor/ant-design-blazor/7dbee63648e088c73c47eada79c897bc39fc3c26/logo.svg'
+ },
];
// **************************************************************************
diff --git a/docs/index.en-US.md b/docs/index.en-US.md
index 0041136..8b37c84 100644
--- a/docs/index.en-US.md
+++ b/docs/index.en-US.md
@@ -51,7 +51,7 @@ jobs:
## 💖 Who is using?
-
+
## ⚡ Feedback
diff --git a/docs/index.md b/docs/index.md
index fe96a57..397a020 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -51,7 +51,7 @@ jobs:
## 💖 谁在使用?
-
+
## ⚡ 反馈
diff --git a/script/update-users.js b/script/update-users.js
index 7ea7925..86dd9af 100644
--- a/script/update-users.js
+++ b/script/update-users.js
@@ -28,23 +28,23 @@ for (let j = 1; j <= row; j++) {
table = `
+
`;
// **************************************************************************
const point = '';
-const last = `
-## LICENSE
-
-[MIT](https://github.com/actions-cool/issues-helper/blob/main/LICENSE)
-`;
+const cnPoint= `## 列 表`;
+const enPoint = `## List`;
// **************************************************************************
const cn = readFileSync('./README.md', 'utf8');
const cnIn = cn.indexOf(point);
+const cnAfterIn = cn.indexOf(cnPoint);
const cnBefore = cn.substring(0, cnIn);
-const newcn = cnBefore + table + last;
+const cnAfter = cn.substring(cnAfterIn, cn.length);
+const newcn = cnBefore + table + cnAfter;
writeFileSync('./README.md', newcn);
console.log(`🎉 Done cn`);
@@ -52,8 +52,10 @@ console.log(`🎉 Done cn`);
const en = readFileSync('./README.en-US.md', 'utf8');
const enIn = en.indexOf(point);
+const enAfterIn = en.indexOf(enPoint);
const enBefore = en.substring(0, enIn);
-const newen = enBefore + table + last;
+const enAfter = en.substring(enAfterIn, en.length);
+const newen = enBefore + table + enAfter;
writeFileSync('./README.en-US.md', newen);
console.log(`🎉 Done en`);