Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/issue-triage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Issue Triage

on:
issues:
types: [opened, labeled]
workflow_dispatch:
inputs:
backlog-existing:
description: "Triage all existing untriaged open issues"
type: boolean
default: true

jobs:
triage:
uses: ConductionNL/.github/.github/workflows/issue-triage.yml@feature/openspec-project-sync
with:
app-name: openconnector
backlog-existing: ${{ github.event_name == 'workflow_dispatch' && inputs.backlog-existing || false }}
secrets:
PROJECT_TOKEN: ${{ secrets.PROJECT_TOKEN }}
15 changes: 15 additions & 0 deletions .github/workflows/openspec-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: OpenSpec Sync

on:
push:
branches: [development]
paths: ['openspec/**']
workflow_dispatch:

jobs:
sync:
uses: ConductionNL/.github/.github/workflows/openspec-sync.yml@feature/openspec-project-sync
with:
app-name: openconnector
secrets:
PROJECT_TOKEN: ${{ secrets.PROJECT_TOKEN }}
Loading