build: 更新issues处理action
This commit is contained in:
parent
632bbbf5e9
commit
87322358cc
|
@ -1,16 +0,0 @@
|
||||||
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
|
|
|
@ -20,3 +20,19 @@ jobs:
|
||||||
with:
|
with:
|
||||||
actions: 'remove-labels'
|
actions: 'remove-labels'
|
||||||
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: '状态:待处理'
|
|
@ -1,17 +0,0 @@
|
||||||
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.GITHUB_TOKEN }}
|
|
|
@ -1,6 +1,6 @@
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 9 * * *"
|
- cron: "0 1 * * *"
|
||||||
|
|
||||||
name: Check recent handle issues
|
name: Check recent handle issues
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 9 * * 1-5"
|
||||||
|
|
||||||
|
name: Check untimely handle issues
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check-untimely-handle-issues:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Check untimely issues and send msg
|
||||||
|
uses: jumpserver/action-issues-alert@master
|
||||||
|
with:
|
||||||
|
hook: ${{ secrets.WECHAT_GROUP_WEB_HOOK }}
|
||||||
|
type: untimely
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in New Issue