There was an error while loading. Please reload this page.
1 parent 19fee76 commit 290260bCopy full SHA for 290260b
1 file changed
.github/workflows/issue-triage.yml
@@ -0,0 +1,20 @@
1
+name: Issue Triage
2
+
3
+on:
4
+ issues:
5
+ types: [opened, labeled]
6
+ workflow_dispatch:
7
+ inputs:
8
+ backlog-existing:
9
+ description: "Triage all existing untriaged open issues"
10
+ type: boolean
11
+ default: true
12
13
+jobs:
14
+ triage:
15
+ uses: ConductionNL/.github/.github/workflows/issue-triage.yml@feature/openspec-project-sync
16
+ with:
17
+ app-name: softwarecatalog
18
+ backlog-existing: ${{ github.event_name == 'workflow_dispatch' && inputs.backlog-existing || false }}
19
+ secrets:
20
+ PROJECT_TOKEN: ${{ secrets.PROJECT_TOKEN }}
0 commit comments