Skip to content

Commit 77fe363

Browse files
authored
Merge pull request #31 from tarosky/feature/issue-triage
Add weekly issue triage workflow
2 parents 712b664 + 5ee791b commit 77fe363

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/issue-triage.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Issue Triage
2+
3+
on:
4+
schedule:
5+
- cron: '0 1 * * 1' # 毎週月曜 01:00 UTC
6+
workflow_dispatch:
7+
inputs:
8+
days:
9+
description: "何日以内に作成されたIssueを対象にするか(デフォルト: 30)"
10+
required: false
11+
type: string
12+
default: '30'
13+
14+
jobs:
15+
triage:
16+
uses: tarosky/workflows/.github/workflows/issue-triage.yml@main
17+
with:
18+
plugin_name: taro-clockwork-post
19+
days: ${{ fromJSON(inputs.days || '30') }}
20+
secrets: inherit

0 commit comments

Comments
 (0)