Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the repository’s GitHub contribution templates by moving bug/feature requests to Issue Forms and modernizing the PR template; also introduces an evaluation config for the igniteui-angular-components skill.
Changes:
- Added new Issue Form templates for bug reports and feature requests; removed legacy markdown issue templates.
- Expanded
.github/PULL_REQUEST_TEMPLATE.mdwith clearer sections for description, motivation, testing, and accessibility verification. - Added
skills/igniteui-angular-components/eval.yamldefining two skill evaluation tasks with deterministic + rubric-based grading.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
skills/igniteui-angular-components/eval.yaml |
Adds skill eval tasks/graders for Ignite UI Angular component scenarios. |
.github/PULL_REQUEST_TEMPLATE.md |
Restructures PR template to capture better context, testing, and accessibility checks. |
.github/ISSUE_TEMPLATE/feature_request.yml |
Introduces Feature Request Issue Form. |
.github/ISSUE_TEMPLATE/bug_report.yml |
Introduces Bug Report Issue Form with structured fields for reproduction details. |
.github/ISSUE_TEMPLATE/feature_request.md |
Removes legacy markdown issue template (replaced by Issue Form). |
.github/ISSUE_TEMPLATE/bug_report.md |
Removes legacy markdown issue template (replaced by Issue Form). |
.github/ISSUE_TEMPLATE.md |
Removes legacy fallback issue template. |
| c2_pass=true; c2_msg="Template file exists" | ||
| fi | ||
|
|
||
| if [ -f "contact-form.component.ts" ] && grep -q "igniteui-angular" contact-form.component.ts && grep -q "IgxInputGroupModule\|IgxDatePickerModule\|IgxSelectModule\|IgxCheckboxModule\|IgxButtonModule" contact-form.component.ts; then |
| c3_pass=true; c3_msg="Required Ignite UI imports found" | ||
| fi | ||
|
|
||
| if [ -f "contact-form.component.html" ] && grep -q "igx-input-group\|igxInput" contact-form.component.html && grep -q "igx-date-picker\|igxDatePicker" contact-form.component.html && grep -q "igx-select\|igxSelect" contact-form.component.html && grep -q "igx-checkbox\|igxCheckbox" contact-form.component.html; then |
Comment on lines
+124
to
+127
| if [ -f "dashboard.component.html" ] && grep -q "igx-card\|igxCard" dashboard.component.html && grep -q "igx-list\|igxList" dashboard.component.html; then | ||
| passed=$((passed + 1)) | ||
| c5_pass=true; c5_msg="Card and list components implemented" | ||
| fi |
Comment on lines
+1
to
+16
| version: "1" | ||
|
|
||
| defaults: | ||
| agent: gemini | ||
| provider: docker | ||
| trials: 5 | ||
| timeout: 300 | ||
| threshold: 0.8 | ||
| docker: | ||
| base: node:20-slim | ||
|
|
||
| tasks: | ||
| - name: create-contact-form-with-igniteui | ||
| instruction: | | ||
| Create an Angular component that uses Ignite UI for Angular form controls to build a contact form. The form should include: | ||
| - Input Group for name and email fields |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR modernizes GitHub contribution workflows by updating the pull request template and migrating legacy Markdown issue templates to GitHub Issue Forms (YAML).
Changes:
- Expanded
.github/PULL_REQUEST_TEMPLATE.mdwith clearer sections for description, motivation, testing, and accessibility verification. - Added new Issue Forms templates for bug reports and feature requests (
.yml) and removed the legacy.mdvariants. - Removed the repository-level legacy
.github/ISSUE_TEMPLATE.mddefault issue template.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| .github/PULL_REQUEST_TEMPLATE.md | Adds more structured PR sections (description, motivation, testing details, accessibility check). |
| .github/ISSUE_TEMPLATE/feature_request.yml | Introduces a structured Issue Form for feature requests. |
| .github/ISSUE_TEMPLATE/feature_request.md | Removes the legacy Markdown feature request template. |
| .github/ISSUE_TEMPLATE/bug_report.yml | Introduces a structured Issue Form for bug reports. |
| .github/ISSUE_TEMPLATE/bug_report.md | Removes the legacy Markdown bug report template. |
| .github/ISSUE_TEMPLATE.md | Removes the legacy default issue template. |
| @@ -0,0 +1,194 @@ | |||
| name: Bug Report | |||
| description: Create a report to help us improve | |||
| type: Bug | |||
| @@ -0,0 +1,122 @@ | |||
| name: Feature Request | |||
| description: Suggest an idea for this project | |||
| type: Feature | |||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #
Additional information (check all that apply):
Checklist:
feature/README.MDupdates for the feature docsREADME.MDCHANGELOG.MDupdates for newly added functionalityng updatemigrations for the breaking changes (migrations guidelines)