diff --git a/.github/workflows/issue-triage.yml b/.github/workflows/issue-triage.yml new file mode 100644 index 000000000..b1d67c1ca --- /dev/null +++ b/.github/workflows/issue-triage.yml @@ -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 }} diff --git a/.github/workflows/openspec-sync.yml b/.github/workflows/openspec-sync.yml new file mode 100644 index 000000000..b945d5e66 --- /dev/null +++ b/.github/workflows/openspec-sync.yml @@ -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 }}