Skip to content
9 changes: 6 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
---
name: Bug report
about: Report a bug in IdentityLifecycleEngine (IdLE)
title: "[Bug] "
labels: bug
assignees: ""
title: ""
labels:
- bug
- new
assignees:
- blindzero
---

## Description
Expand Down
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
blank_issues_enabled: false
contact_links:
- name: "IdLE Documentation"
url: "https://blindzero.github.io/IdentityLifecycleEngine/"
about: "Read the official Identity Lifecycle Engine documentation."
- name: "Report a bug"
url: "https://github.com/blindzero/IdentityLifecycleEngine/issues/new?template=bug_report.md"
about: "Create a bug report for Identity Lifecycle Engine."
- name: "Report a feature request"
url: "https://github.com/blindzero/IdentityLifecycleEngine/issues/new?template=feature_request.md"
about: "Create a feature request for Identity Lifecycle Engine."
- name: "Any other issue"
url: "https://github.com/blindzero/IdentityLifecycleEngine/issues/new?template=other.md"
about: "Create an issue for anything else regarding Identity Lifecycle Engine."
11 changes: 7 additions & 4 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
---
name: Feature request
about: Suggest an enhancement or new feature for IdLE
title: "[Feature] "
labels: enhancement
assignees: ""
title: ""
labels:
- enhancement
- new
assignees:
- blindzero
---

## Problem Statement
Expand All @@ -25,4 +28,4 @@ Describe any alternative solutions you have considered.

## Additional Context

Add any other context or examples here.
Add any other context or examples here, attach logs, screenshots, or relevant files.
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/other.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: "General / Other"
about: "For issues that don't fit 'Bug report' or 'Feature request'."
title: ""
labels:
- new
assignees:
- blindzero
---

---
> ⚠️ Note — Please use the dedicated templates
>
> - Bug report: https://github.com/blindzero/IdentityLifecycleEngine/issues/new?template=bug_report.md
> - Feature request: https://github.com/blindzero/IdentityLifecycleEngine/issues/new?template=feature_request.md
---
Copy link

Copilot AI Jan 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are two consecutive horizontal rules (---) on lines 11 and 16 without content between them, creating an empty blockquote section. This appears to be a formatting error. Remove one of the horizontal rules or add content between them.

Suggested change
---

Copilot uses AI. Check for mistakes.

# Description

Provide a brief, concise summary of your request.

## Attachments

- Attach logs, screenshots, or relevant files.

## Additional notes

Anything else you want to tell...
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
## Summary
# Summary

Provide a short summary of the changes.

## Motivation

Why is this change needed? What problem does it solve?

## Changes

-
-
-

## Type of Change

Please select the relevant option:
Expand All @@ -22,6 +16,12 @@ Please select the relevant option:
- [ ] Documentation update
- [ ] Refactoring / internal improvement

## Changes

-
-
-

## Testing

Describe how this change was tested.
Expand All @@ -30,6 +30,10 @@ Describe how this change was tested.
- [ ] Contract tests
- [ ] Manual testing

### How to test & review

If helpful, provide additional information how to test.

## Checklist

- [ ] Code follows STYLEGUIDE.md
Expand All @@ -41,3 +45,5 @@ Describe how this change was tested.
## Related Issues

Link related issues here (if any).

Closes #...
5 changes: 1 addition & 4 deletions .github/workflows/issue-auto-assign.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Auto label and assign new issues

on:
issues:
types: [opened]

on: workflow_dispatch
Comment thread
blindzero marked this conversation as resolved.
Comment thread
blindzero marked this conversation as resolved.
jobs:
label_and_assign:
if: github.event.issue.user.login != 'blindzero'
Comment thread
blindzero marked this conversation as resolved.
Expand Down