-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
128 changed files
with
2,892 additions
and
960 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# force copy from tencent/tdesign | ||
name: Issue Help wanted | ||
on: | ||
issues: | ||
types: | ||
- labeled | ||
jobs: | ||
add-comment: | ||
if: github.event.label.name == 'help wanted' | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- name: Add comment | ||
uses: peter-evans/create-or-update-comment@v1 | ||
with: | ||
issue-number: ${{ github.event.issue.number }} | ||
body: | | ||
任何人都可以处理此问题。 | ||
**请务必在您的 `pull request` 中引用此问题。** :sparkles: | ||
感谢你的贡献! :sparkles: | ||
reactions: heart |
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 @@ | ||
# force copy from tencent/tdesign | ||
# 当在 issue 的 comment 回复类似 `Duplicate of #111` 这样的话,issue 将被自动打上 重复提交标签 并且 cloese | ||
name: Issue Mark Duplicate | ||
|
||
on: | ||
issue_comment: | ||
types: [created, edited] | ||
|
||
jobs: | ||
mark-duplicate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: mark-duplicate | ||
uses: actions-cool/issues-helper@v2 | ||
with: | ||
actions: "mark-duplicate" | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
duplicate-labels: "duplicate" | ||
close-issue: true |
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,21 @@ | ||
# force copy from tencent/tdesign | ||
# 当被打上 Need Reproduce 标签时候,自动提示需要重现实例 | ||
|
||
name: ISSUE_REPLY | ||
|
||
on: | ||
issues: | ||
types: [labeled] | ||
|
||
jobs: | ||
issue-reply: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Need Reproduce | ||
if: github.event.label.name == 'Need Reproduce' | ||
uses: actions-cool/issues-helper@v2 | ||
with: | ||
actions: 'create-comment' | ||
issue-number: ${{ github.event.issue.number }} | ||
body: | | ||
你好 @${{ github.event.issue.user.login }}, 我们需要你提供一个在线的重现实例以便于我们帮你排查问题。你可以通过点击 [此处](https://codesandbox.io/) 创建一个 codesandbox 或者提供一个最小化的 GitHub 仓库。请确保选择准确的版本。 |
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,27 @@ | ||
# force copy from tencent/tdesign | ||
# 国际标准时间+8 | ||
name: Close stale issues and PRs | ||
on: | ||
schedule: | ||
- cron: "50 5 * * *" | ||
|
||
jobs: | ||
close-issues: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/stale@v4 | ||
with: | ||
stale-issue-message: "这个 Issue 被标记为了过时 stale ,因为它已经 open 了 30 天,没有任何活动。删除 stale 标签或评论,否则将在 7 天内关闭。" | ||
stale-pr-message: '这个 PR 已经过时了,因为它已经开放了 45 天,没有任何活动。 删除 stale 的标签或评论,否则将在 10 天内关闭。' | ||
close-issue-message: "此 Issue 被自动关闭,因为它自被标记为过时 stale 以来已闲置 5 天。" | ||
close-pr-message: "此 PR 被自动关闭,因为它已经 stable 停滞了 10 天,没有任何活动。" | ||
days-before-stale: 30 | ||
days-before-close: 7 | ||
days-before-pr-stale: 45 | ||
days-before-pr-close: 10 | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
exempt-issue-labels: 'WIP' | ||
exempt-pr-labels: 'WIP' |
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
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
Oops, something went wrong.