Skip to content

Add WORKFLOW.md, issue templates, and PR template (#7)#48

Merged
brylie merged 4 commits into
Finntegrate:mainfrom
BiswasNehaa:doc-7-project-workflow
Jul 4, 2026
Merged

Add WORKFLOW.md, issue templates, and PR template (#7)#48
brylie merged 4 commits into
Finntegrate:mainfrom
BiswasNehaa:doc-7-project-workflow

Conversation

@BiswasNehaa

@BiswasNehaa BiswasNehaa commented Jun 27, 2026

Copy link
Copy Markdown
Contributor

Closes #7
This PR closes issue #7 by adding proper workflow documentation and templates that were missing. I added a WORKFLOW.md covering the project board fields, label structure, and noted that issue types aren’t strictly consistent yet. Also included three GitHub issue templates (bug, feature, task) using YAML forms to match the current workflow. A PR template was added too, aligning with the checks already defined in CONTRIBUTING.md. All files were validated (YAML + markdownlint), so everything is clean and working as expected.

Summary by CodeRabbit

  • New Features

    • Added guided issue templates for bug reports, feature requests, and tasks, plus a structured pull request template to standardize submissions.
  • Documentation

    • Added a workflow guide detailing issue types, label taxonomy, project board usage, and the triage process for new items.

@coderabbitai

coderabbitai Bot commented Jun 27, 2026

Copy link
Copy Markdown

Review Change Stack

Warning

Review limit reached

@BiswasNehaa, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 59 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: bbcca9ad-084e-485e-9177-a1838f995e2d

📥 Commits

Reviewing files that changed from the base of the PR and between c0c0039 and 6da5d52.

📒 Files selected for processing (2)
  • .github/ISSUE_TEMPLATE/bug_report.yml
  • .github/ISSUE_TEMPLATE/feature_request.yml
📝 Walkthrough

Walkthrough

Adds GitHub issue templates for bug, feature, and task requests, a pull request template, and WORKFLOW.md documenting the project board, issue types, label taxonomy, and triage flow.

Changes

GitHub Workflow Setup

Layer / File(s) Summary
Issue and PR templates
.github/ISSUE_TEMPLATE/bug_report.yml, .github/ISSUE_TEMPLATE/feature_request.yml, .github/ISSUE_TEMPLATE/task.yml, .github/PULL_REQUEST_TEMPLATE.md
Adds structured issue form templates for bug reports, feature requests, and tasks, plus a PR template with description, checklist, related issue, and additional context sections.
WORKFLOW.md documentation
WORKFLOW.md
Adds workflow documentation covering project board fields, issue types, label taxonomy tables, and the numbered triage process.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~5 minutes

Poem

🐇 Hop hop, the forms are set,
Bugs and tasks and features met.
A workflow map from start to end,
Boards and labels now depend.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly summarizes the added workflow doc and GitHub templates.
Linked Issues check ✅ Passed The PR adds WORKFLOW.md, Bug/Feature/Task issue templates, and a PR template, matching issue #7's required deliverables.
Out of Scope Changes check ✅ Passed The changes stay focused on workflow documentation and repository templates, with no unrelated code changes.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

Comment thread .github/ISSUE_TEMPLATE/bug_report.yml Outdated
Comment thread .github/ISSUE_TEMPLATE/feature_request.yml Outdated
Comment thread .github/ISSUE_TEMPLATE/task.yml Outdated
@brylie

brylie commented Jun 28, 2026

Copy link
Copy Markdown
Member

Overall, this looks great, thanks! Let's remove the redundant label metadata for now.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Actionable comments posted: 1

♻️ Duplicate comments (2)
.github/ISSUE_TEMPLATE/feature_request.yml (1)

4-5: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Remove redundant labels field.

The type: Feature at Line 6 already classifies this issue; the enhancement label duplicates that metadata. A previous review explicitly requested removing this redundancy.

-labels:
-  - enhancement
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.github/ISSUE_TEMPLATE/feature_request.yml around lines 4 - 5, The feature
request template contains a redundant labels entry that duplicates the issue
type metadata. Remove the labels field from the feature_request YAML so the
template relies on the existing type setting, and keep the rest of the
ISSUE_TEMPLATE content unchanged.
.github/ISSUE_TEMPLATE/bug_report.yml (1)

4-5: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Remove redundant labels field.

The type: Bug at Line 6 already classifies this issue; the bug label duplicates that metadata. A previous review explicitly requested removing this redundancy.

-labels:
-  - bug
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.github/ISSUE_TEMPLATE/bug_report.yml around lines 4 - 5, The issue is a
redundant issue-template label definition in the bug report template. Remove the
`labels` field from the bug report YAML so the template relies on `type: Bug`
alone, and update the `.github/ISSUE_TEMPLATE/bug_report.yml` configuration
accordingly without changing the rest of the template metadata.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In @.github/PULL_REQUEST_TEMPLATE.md:
- Line 8: The PR checklist item contains a typo in the command name. Update the
text in the pull request template to use the correct tool name, changing the
`prek` reference in the checklist entry to `pre-commit` so the documented
validation command matches the actual workflow.

---

Duplicate comments:
In @.github/ISSUE_TEMPLATE/bug_report.yml:
- Around line 4-5: The issue is a redundant issue-template label definition in
the bug report template. Remove the `labels` field from the bug report YAML so
the template relies on `type: Bug` alone, and update the
`.github/ISSUE_TEMPLATE/bug_report.yml` configuration accordingly without
changing the rest of the template metadata.

In @.github/ISSUE_TEMPLATE/feature_request.yml:
- Around line 4-5: The feature request template contains a redundant labels
entry that duplicates the issue type metadata. Remove the labels field from the
feature_request YAML so the template relies on the existing type setting, and
keep the rest of the ISSUE_TEMPLATE content unchanged.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 90dffa80-1830-4984-85b9-7a6a675692f7

📥 Commits

Reviewing files that changed from the base of the PR and between 7dd076d and 21dae43.

📒 Files selected for processing (5)
  • .github/ISSUE_TEMPLATE/bug_report.yml
  • .github/ISSUE_TEMPLATE/feature_request.yml
  • .github/ISSUE_TEMPLATE/task.yml
  • .github/PULL_REQUEST_TEMPLATE.md
  • WORKFLOW.md

Comment thread .github/PULL_REQUEST_TEMPLATE.md
@brylie brylie force-pushed the doc-7-project-workflow branch from 21dae43 to c0c0039 Compare June 28, 2026 15:30
@brylie

brylie commented Jun 28, 2026

Copy link
Copy Markdown
Member

@BiswasNehaa, I've rebased this branch on main to bring in recent changes to the CI workflow. Please delete your local branch and check out again from the remote, so you have the rebased branch.

@github-actions

Copy link
Copy Markdown

Test Coverage Report

87% coverage (required: ≥80%)

Coverage meets the project threshold. 🎉

BiswasNehaa and others added 2 commits June 30, 2026 21:18
Co-authored-by: Brylie Oxley <brylie@protonmail.com>
Co-authored-by: Brylie Oxley <brylie@protonmail.com>
@sonarqubecloud

Copy link
Copy Markdown

@BiswasNehaa BiswasNehaa left a comment

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

appiled the suggestions

@brylie brylie merged commit 5436f2a into Finntegrate:main Jul 4, 2026
6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Document the GitHub project workflow

2 participants