Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
D
dataease
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
njgzx
dataease
Commits
67c80e74
提交
67c80e74
authored
12月 07, 2021
作者:
xuwei-fit2cloud
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
build: 增加issue处理action
上级
5747030e
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
131 行增加
和
0 行删除
+131
-0
issue-check-inactive.yml
.github/workflows/issue-check-inactive.yml
+16
-0
issue-close-require.yml
.github/workflows/issue-close-require.yml
+27
-0
issue-comment.yml
.github/workflows/issue-comment.yml
+38
-0
issue-inactive-alert.yml
.github/workflows/issue-inactive-alert.yml
+17
-0
issue-open.yml
.github/workflows/issue-open.yml
+16
-0
issue-recent-alert.yml
.github/workflows/issue-recent-alert.yml
+17
-0
没有找到文件。
.github/workflows/issue-check-inactive.yml
0 → 100644
浏览文件 @
67c80e74
name
:
Issue Check Inactive
on
:
schedule
:
-
cron
:
"
0
0
*/15
*
*"
jobs
:
issue-check-inactive
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
check-inactive
uses
:
actions-cool/issues-helper@v2
with
:
actions
:
'
check-inactive'
inactive-label
:
'
Inactive'
inactive-day
:
30
.github/workflows/issue-close-require.yml
0 → 100644
浏览文件 @
67c80e74
name
:
Issue Close Require
on
:
schedule
:
-
cron
:
"
0
0
*
*
*"
jobs
:
issue-close-require
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
need reproduce
uses
:
actions-cool/issues-helper@v2
with
:
actions
:
'
close-issues'
labels
:
'
状态:待反馈'
inactive-day
:
7
body
:
|
由于该 issue 被标记为 状态:待反馈,却 7 天未收到回应。现关闭 issue,若有任何问题,可评论回复。
-
name
:
needs more info
uses
:
actions-cool/issues-helper@v2
with
:
actions
:
'
close-issues'
labels
:
'
needs-more-info'
inactive-day
:
7
body
:
|
Since the issue was labeled with `needs-more-info`, but no response in 7 days. This issue will be closed. If you have any questions, you can comment and reply.
.github/workflows/issue-comment.yml
0 → 100644
浏览文件 @
67c80e74
on
:
issue_comment
:
types
:
[
created
]
name
:
Add issues workflow labels
jobs
:
add-label-if-is-author
:
runs-on
:
ubuntu-latest
if
:
${{ github.event.comment.pull_request.user.id == github.event.comment.user.id }} && ${{ !github.event.comment.pull_request.pull_request }}
steps
:
-
name
:
Add require handle label
uses
:
actions-cool/issues-helper@v2
with
:
actions
:
'
add-labels'
labels
:
'
状态:待处理'
-
name
:
Remove require reply label
uses
:
actions-cool/issues-helper@v2
with
:
actions
:
'
remove-labels'
labels
:
'
状态:待反馈'
add-label-if-not-author
:
runs-on
:
ubuntu-latest
if
:
${{ github.event.comment.pull_request.user.id != github.event.comment.user.id }} && ${{ !github.event.comment.pull_request.pull_request }}
steps
:
-
name
:
Add require replay label
uses
:
actions-cool/issues-helper@v2
with
:
actions
:
'
add-labels'
labels
:
'
状态:待反馈'
-
name
:
Remove require handle label
uses
:
actions-cool/issues-helper@v2
with
:
actions
:
'
remove-labels'
labels
:
'
状态:待处理'
.github/workflows/issue-inactive-alert.yml
0 → 100644
浏览文件 @
67c80e74
on
:
schedule
:
-
cron
:
"
0
9
*
*
1"
name
:
Check inactive issues
jobs
:
check-inactive-issues
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Check inactive issues and send msg
uses
:
jumpserver/action-issues-alert@master
with
:
hook
:
${{ secrets.WECHAT_GROUP_WEB_HOOK }}
type
:
inactive
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUBTOKEN }}
.github/workflows/issue-open.yml
0 → 100644
浏览文件 @
67c80e74
name
:
Issue Open Check
on
:
issues
:
types
:
[
opened
]
jobs
:
issue-open-add-labels
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Add labels
uses
:
actions-cool/issues-helper@v2
if
:
${{ !github.event.comment.pull_request.pull_request }}
with
:
actions
:
'
add-labels'
labels
:
'
状态:待处理'
.github/workflows/issue-recent-alert.yml
0 → 100644
浏览文件 @
67c80e74
on
:
schedule
:
-
cron
:
"
0
9
*
*
*"
name
:
Check recent handle issues
jobs
:
check-recent-issues-not-handle
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Check recent issues and send msg
uses
:
jumpserver/action-issues-alert@master
with
:
hook
:
${{ secrets.WECHAT_GROUP_WEB_HOOK }}
type
:
recent
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUBTOKEN }}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论