https://github.com/jumpserver/action-issues-alert
https://github.com/jumpserver/action-issues-alert
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jumpserver/action-issues-alert
- Owner: jumpserver
- License: mit
- Created: 2021-12-03T10:30:02.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-16T09:50:14.000Z (about 4 years ago)
- Last Synced: 2024-04-13T17:54:28.952Z (over 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 查询 issues,并发通知
- 近几天没有处理的 issues
- 长时间没有反馈/处理的 issues
## Inputs
## `hook`
**Required** 发送通知的 企业微信群 web hook 地址
## `type`
**Optional** 检查的类型 recent, inactive, untimely, all
## `repo`
**Optional** 检查的仓库地址,默认 当前仓库
## `inactive`
**Optional** 不活跃天数
## `recent`
**Optional** 近一段时间指天数
## `untimely`
**Optional** 不及时处理的天数
## Example usage
```yaml
on:
schedule:
- cron: "7 17 * * *"
jobs:
issue-check-inactive:
runs-on: ubuntu-latest
steps:
- name: check-inactive
uses: jumpserver/action-issues-alert@master
with:
repo: jumpserver/jumpserver
type: recent
rencent: 3
```