We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 712b664 commit 5ee791bCopy full SHA for 5ee791b
.github/workflows/issue-triage.yml
@@ -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