We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bdceac commit cbaa8cfCopy full SHA for cbaa8cf
.github/workflows/issue-triage.yml
@@ -0,0 +1,18 @@
1
+---
2
+name: Issue Triage
3
+
4
+'on':
5
+ issues:
6
+ types: [opened]
7
+ workflow_dispatch:
8
+ inputs:
9
+ issue_number:
10
+ description: 'Issue number to triage (leave empty to process all)'
11
+ required: false
12
+ type: string
13
14
+jobs:
15
+ issue-triage:
16
+ uses: wp-cli/.github/.github/workflows/reusable-issue-triage.yml@main
17
+ with:
18
+ issue_number: ${{ github.event_name == 'workflow_dispatch' && inputs.issue_number || github.event.issue.number }}
0 commit comments