Issue Triage #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Issue Triage | |
| on: | |
| schedule: | |
| - cron: '0 1 * * 1' # 毎週月曜 01:00 UTC | |
| workflow_dispatch: | |
| inputs: | |
| days: | |
| description: "何日以内に作成されたIssueを対象にするか(デフォルト: 30)" | |
| required: false | |
| type: string | |
| default: '30' | |
| jobs: | |
| triage: | |
| uses: tarosky/workflows/.github/workflows/issue-triage.yml@main | |
| with: | |
| plugin_name: rich-taxonomy | |
| days: ${{ fromJSON(inputs.days || '30') }} | |
| secrets: inherit |