Skip to content

Commit 290260b

Browse files
committed
feat: Add issue triage caller workflow
1 parent 19fee76 commit 290260b

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.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+
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

Comments
 (0)