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
16 changes: 16 additions & 0 deletions .github/workflows/issue-project-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Issue Project Sync
on:
issues:
types: [labeled]

permissions:
issues: read

jobs:
sync:
if: github.event.label.name == 'backlog'
runs-on: ubuntu-latest
steps:
- uses: cloudoperators/common/workflows/issue-project-sync@main
with:
GH_TOKEN: ${{ secrets.GH_PROJECT_TOKEN }}
13 changes: 13 additions & 0 deletions .github/workflows/issue-triage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Issue Triage
on:
issues:
types: [opened]

permissions:
issues: write

jobs:
triage:
Comment thread
uwe-mayer marked this conversation as resolved.
runs-on: ubuntu-latest
steps:
- uses: cloudoperators/common/workflows/issue-triage@main
14 changes: 12 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ The following rule governs code contributions:

## Issues and Planning

* We use GitHub issues to track bugs and enhancement requests.
We follow a shared issue lifecycle across all `cloudoperators` repositories. See the **[Issue Lifecycle documentation](https://github.com/cloudoperators/common/blob/main/ISSUE_LIFECYCLE.md)** for the full process including:

* Please provide as much context as possible when you open an issue. The information you provide must be comprehensive enough to reproduce that issue for the assignee.
* Automatic triage labeling
* Triage decision matrix
* Definition of Ready
* Refinement workflow
* Sprint/quarter planning

Quick links:

* [Issues needing triage (org-wide)](https://github.com/issues?q=org%3Acloudoperators+label%3Aneeds-triage+is%3Aopen+sort%3Acreated-asc)
* [Issues ready to pick up (`backlog`)](https://github.com/cloudoperators/cloudctl/issues?q=is%3Aopen+is%3Aissue+label%3Abacklog)
* [Project board](https://github.com/orgs/cloudoperators/projects/9)
Loading