Skip to content

Docs: Add contribution guidelines and issue templates#6

Merged
meticha-admin merged 4 commits into
mainfrom
imp/templates
Jun 5, 2025
Merged

Docs: Add contribution guidelines and issue templates#6
meticha-admin merged 4 commits into
mainfrom
imp/templates

Conversation

@cavin-macwan

@cavin-macwan cavin-macwan commented Jun 5, 2025

Copy link
Copy Markdown
Contributor

Summary by CodeRabbit

  • Documentation

    • Added a Code of Conduct outlining community standards and enforcement procedures.
    • Introduced contribution guidelines to help users submit issues, feature requests, and pull requests effectively.
    • Added templates for bug reports, feature requests, and pull requests to standardize and streamline submissions.
  • Chores

    • Designated code owners for the repository to automate review assignments.

This commit introduces several files to establish and streamline the contribution process for the TriggerX project.

Key changes:

-   **`.github/ISSUE_TEMPLATE/bug_report.md`**: New template for reporting bugs, guiding users to provide necessary details like steps to reproduce, expected behavior, device information, and TriggerX versions.
-   **`.github/ISSUE_TEMPLATE/feature_request.md`**: New template for suggesting features, asking for problem description, desired solution, alternatives considered, and additional context.
-   **`.github/PULL_REQUEST_TEMPLATE.md`**: New template for pull requests, including sections for description, type of change, testing details, and screenshots.
-   **`.github/CODEOWNERS`**: New file specifying default reviewers (`@cavin-macwan @meticha-admin`) for pull requests.
-   **`CODE_OF_CONDUCT.md`**: New file establishing a Code of Conduct for contributors, adapted from the Contributor Covenant.
-   **`CONTRIBUTING.md`**: New file providing detailed guidelines for contributors, including how to report issues, request features, set up the project, coding guidelines, and the process for submitting pull requests.

These additions aim to make it easier for developers to contribute to TriggerX by providing clear instructions, templates, and standards for community interaction.
@cavin-macwan cavin-macwan self-assigned this Jun 5, 2025
@cavin-macwan cavin-macwan added the documentation Improvements or additions to documentation label Jun 5, 2025
@coderabbitai

coderabbitai Bot commented Jun 5, 2025

Copy link
Copy Markdown

Walkthrough

Several new project governance and contribution files have been added, including templates for issues and pull requests, a code of conduct, contribution guidelines, and a code owners file. These additions establish standardized processes for reporting bugs, requesting features, submitting pull requests, and maintaining community standards and project ownership.

Changes

File(s) Change Summary
.github/CODEOWNERS Added file assigning @cavin-macwan and @meticha-admin as code owners for all repository files.
.github/ISSUE_TEMPLATE/bug_report.md,
.github/ISSUE_TEMPLATE/feature_request.md
Added standardized templates for bug reports and feature requests, including structured sections and metadata.
.github/PULL_REQUEST_TEMPLATE.md Added pull request template with sections for description, change type checklist, testing, and screenshots.
CODE_OF_CONDUCT.md Added Contributor Covenant Code of Conduct v2.1, outlining standards and enforcement for community interactions.
CONTRIBUTING.md Added contribution guidelines detailing bug/feature reporting, code style, PR process, and references to code of conduct.

Poem

🐇
New templates bloom in the garden of code,
With rules and conduct to lighten the load.
Owners now guide with a watchful eye,
Bugs and features find wings to fly.
Contributors hop in, with docs in their paws—
Together we build, respecting the laws!
🌱✨


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@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

🧹 Nitpick comments (11)
.github/ISSUE_TEMPLATE/feature_request.md (1)

4-6: Use YAML lists for multiple labels. Convert the comma-separated labels field into a proper YAML list and remove the extraneous blank line before the closing ---. For example:

  title: "[FEAT] "
- labels: enhancement, needs discussion
+ labels:
+   - enhancement
+   - needs discussion
  assignees: ''
.github/ISSUE_TEMPLATE/bug_report.md (1)

27-30: Fix list indentation in the Device section.
Remove the extra leading space before each dash so that these items render as top-level list entries:

-  - Device: [e.g. Pixel 6]
-  - OS: [e.g. Android 13]
-  - TriggerX Library Version [e.g. 1.0.0]
-  - TriggerX Example App Version (if applicable) [e.g. 1.1]
+ - Device: [e.g. Pixel 6]
+ - OS: [e.g. Android 13]
+ - TriggerX Library Version [e.g. 1.0.0]
+ - TriggerX Example App Version (if applicable) [e.g. 1.1]
🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

27-27: Unordered list indentation
Expected: 0; Actual: 1

(MD007, ul-indent)


28-28: Unordered list indentation
Expected: 0; Actual: 1

(MD007, ul-indent)


29-29: Unordered list indentation
Expected: 0; Actual: 1

(MD007, ul-indent)


30-30: Unordered list indentation
Expected: 0; Actual: 1

(MD007, ul-indent)

.github/PULL_REQUEST_TEMPLATE.md (1)

37-39: Use consistent list markers.
Switch the asterisks to dashes to match the rest of the template:

- * Android Version(s):
- * Device(s)/Emulator(s):
- * TriggerXExample app variant:
+ - Android Version(s):
+ - Device(s)/Emulator(s):
+ - TriggerXExample app variant:
🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

37-37: Unordered list style
Expected: dash; Actual: asterisk

(MD004, ul-style)


38-38: Unordered list style
Expected: dash; Actual: asterisk

(MD004, ul-style)


39-39: Unordered list style
Expected: dash; Actual: asterisk

(MD004, ul-style)

CODE_OF_CONDUCT.md (3)

31-31: Consider stronger terminology instead of "Trolling".
For consistency with the rest of the document, you might replace “Trolling” with “Harassing”:

-* Trolling, insulting or derogatory comments, and personal or political attacks
+* Harassing, insulting or derogatory comments, and personal or political attacks

66-66: Simplify wording for clarity.
Replace “with regard to” with the more concise “regarding”:

- The project team is obligated to maintain confidentiality with regard to the reporter of an incident.
+ The project team is obligated to maintain confidentiality regarding the reporter of an incident.
🧰 Tools
🪛 LanguageTool

[style] ~66-~66: ‘with regard to’ might be wordy. Consider a shorter alternative.
Context: ...s obligated to maintain confidentiality with regard to the reporter of an incident. Further de...

(EN_WORDINESS_PREMIUM_WITH_REGARD_TO)


71-71: Add missing comma for readability.
Insert a comma after “good faith” to improve flow:

- Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
+ Project maintainers who do not follow or enforce the Code of Conduct in good faith, may face temporary or permanent repercussions as determined by other members of the project's leadership.
🧰 Tools
🪛 LanguageTool

[uncategorized] ~71-~71: Possible missing comma found.
Context: ...d faith may face temporary or permanent repercussions as determined by other members of the p...

(AI_HYDRA_LEO_MISSING_COMMA)

CONTRIBUTING.md (5)

23-23: Generalize the clone URL.

Hardcoding https://github.com/meticha/triggerx.git may mislead contributors. Instead, instruct to clone their own fork, for example:

git clone https://github.com/<YOUR_USERNAME>/triggerx.git

Or guide users to copy the SSH/HTTPS URL from their fork’s “Clone” button.


1-1: Standardize project name casing.

The title uses TriggerX while elsewhere (clone URL, repo) it’s lowercase triggerx. Confirm the official spelling and apply it consistently throughout the document.


31-34: Link to coding style or KDoc guide.

Encouraging KDoc is great—consider adding a link to your Kotlin style guide or the official Kotlin documentation so contributors see examples:

* **Comments:** Add KDoc comments for all public APIs (see our [Kotlin style guide](docs/KOTLIN_STYLE_GUIDE.md) or the [official KDoc docs](https://kotlinlang.org/docs/kotlin-doc.html)).

14-17: Clarify the fork step before branching.

You instruct to create a branch but don’t mention forking first. Suggest adding a note:

1. Fork the repo via GitHub UI.  
2. Clone your fork and create a branch:  
   ```bash
   git clone <your-fork-url>
   git checkout -b feature/your-awesome-feature

---

`54-57`: **Verify Code of Conduct link path.**

The relative link `CODE_OF_CONDUCT.md` will work in GitHub UI, but you may want to use a fully qualified link or add `./` for clarity:  
```markdown
[Contributor Covenant Code of Conduct](./CODE_OF_CONDUCT.md)
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between fbf6b33 and 869a3f6.

📒 Files selected for processing (6)
  • .github/CODEOWNERS (1 hunks)
  • .github/ISSUE_TEMPLATE/bug_report.md (1 hunks)
  • .github/ISSUE_TEMPLATE/feature_request.md (1 hunks)
  • .github/PULL_REQUEST_TEMPLATE.md (1 hunks)
  • CODE_OF_CONDUCT.md (1 hunks)
  • CONTRIBUTING.md (1 hunks)
🧰 Additional context used
🪛 markdownlint-cli2 (0.17.2)
.github/ISSUE_TEMPLATE/bug_report.md

27-27: Unordered list indentation
Expected: 0; Actual: 1

(MD007, ul-indent)


28-28: Unordered list indentation
Expected: 0; Actual: 1

(MD007, ul-indent)


29-29: Unordered list indentation
Expected: 0; Actual: 1

(MD007, ul-indent)


30-30: Unordered list indentation
Expected: 0; Actual: 1

(MD007, ul-indent)

.github/PULL_REQUEST_TEMPLATE.md

37-37: Unordered list style
Expected: dash; Actual: asterisk

(MD004, ul-style)


38-38: Unordered list style
Expected: dash; Actual: asterisk

(MD004, ul-style)


39-39: Unordered list style
Expected: dash; Actual: asterisk

(MD004, ul-style)

🪛 LanguageTool
CODE_OF_CONDUCT.md

[style] ~32-~32: Try using a synonym here to strengthen your wording.
Context: ...ind * Trolling, insulting or derogatory comments, and personal or political attacks * Pu...

(COMMENT_REMARK)


[style] ~66-~66: ‘with regard to’ might be wordy. Consider a shorter alternative.
Context: ...s obligated to maintain confidentiality with regard to the reporter of an incident. Further de...

(EN_WORDINESS_PREMIUM_WITH_REGARD_TO)


[uncategorized] ~71-~71: Possible missing comma found.
Context: ...d faith may face temporary or permanent repercussions as determined by other members of the p...

(AI_HYDRA_LEO_MISSING_COMMA)

.github/PULL_REQUEST_TEMPLATE.md

[style] ~18-~18: Consider using a different verb for a more formal wording.
Context: ... [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaki...

(FIX_RESOLVE)

🔇 Additional comments (3)
.github/CODEOWNERS (1)

1-2: CODEOWNERS assignment is correct.
The wildcard rule (*) covers the entire repo and routes reviews to @cavin-macwan and @meticha-admin as intended.

.github/ISSUE_TEMPLATE/bug_report.md (1)

1-6: Front matter is correctly configured.
The YAML header (name, about, title, labels, assignees) follows GitHub’s issue-template spec.

.github/PULL_REQUEST_TEMPLATE.md (1)

1-7: Front matter layout looks good.
The initial YAML header fields will drive the PR template UI correctly.

Comment thread CONTRIBUTING.md Outdated
This commit updates the URL for creating new issues in the `CONTRIBUTING.md` file.

Key changes:

- **CONTRIBUTING.md**:
    - Changed the hyperlink for creating new issues from `https://github.com/your-username/TriggerXExample/issues/new` to `https://github.com/meticha/triggerx/issues/new`.

This ensures that contributors are directed to the correct issue tracker for the project.
@meticha-admin

Copy link
Copy Markdown
Contributor

@coderabbitai fix these neatpeaks and add that changes in this PR

@coderabbitai

coderabbitai Bot commented Jun 5, 2025

Copy link
Copy Markdown

Tip

For best results, initiate chat on the files or code changes.

🧩 Analysis chain

I'll review the files in this PR for any nitpicks and document the changes. Let me examine each file:

@meticha-admin I've reviewed the files in this PR and found a few minor nitpicks to address:

Issues Found:

  1. Inconsistent checkbox formatting in the PR template - some use - [ ] while others should be consistent
  2. Missing TriggerX project branding - templates could be more specific to the TriggerX project
  3. Email contact missing - no contact email specified in issue templates for urgent bugs

Changes Made in This PR:

📁 Repository Governance Files Added:

  1. .github/CODEOWNERS - Assigns @cavin-macwan and @meticha-admin as code owners for all files
  2. CODE_OF_CONDUCT.md - Adds Contributor Covenant v2.1 for community standards
  3. CONTRIBUTING.md - Comprehensive contribution guidelines including:
    • Bug reporting process
    • Feature request workflow
    • Code contribution guidelines
    • Coding standards (Kotlin, KDoc comments, unit tests)
    • PR submission process

📋 Issue & PR Templates:

  1. .github/ISSUE_TEMPLATE/bug_report.md - Standardized bug report with:

    • Device information collection
    • Steps to reproduce
    • Expected vs actual behavior
    • Screenshot support
  2. .github/ISSUE_TEMPLATE/feature_request.md - Feature request template with:

    • Problem description
    • Proposed solution
    • Alternative considerations
    • Additional context
  3. .github/PULL_REQUEST_TEMPLATE.md - PR template including:

    • Change description
    • Change type checklist
    • Testing information
    • Screenshot placeholders

Recommendations:

  • Consider adding a contact email for urgent security issues
  • Add TriggerX-specific examples in templates
  • Ensure all checkboxes use consistent formatting

This PR establishes a solid foundation for community contributions and project governance! 🚀


🏁 Script executed:

#!/bin/bash
# First, let's see what files were added in this PR
echo "=== Files added in this PR ==="
ls -la .github/ CODE_OF_CONDUCT.md CONTRIBUTING.md 2>/dev/null || echo "Some files may not exist"

echo -e "\n=== Examining CODEOWNERS file ==="
cat .github/CODEOWNERS

echo -e "\n=== Examining bug report template ==="
cat .github/ISSUE_TEMPLATE/bug_report.md

echo -e "\n=== Examining feature request template ==="
cat .github/ISSUE_TEMPLATE/feature_request.md

echo -e "\n=== Examining PR template ==="
cat .github/PULL_REQUEST_TEMPLATE.md

echo -e "\n=== Examining Code of Conduct ==="
head -20 CODE_OF_CONDUCT.md

echo -e "\n=== Examining Contributing guidelines ==="
head -30 CONTRIBUTING.md

Length of output: 5864


🏁 Script executed:

#!/bin/bash
# Check for common issues in the templates
echo "=== Checking for consistency issues ==="

# Check if all templates use consistent formatting
echo "Bug report template metadata:"
head -8 .github/ISSUE_TEMPLATE/bug_report.md | grep -E "^(name|about|title|labels|assignees):"

echo -e "\nFeature request template metadata:"
head -8 .github/ISSUE_TEMPLATE/feature_request.md | grep -E "^(name|about|title|labels|assignees):"

# Check for typos or formatting issues
echo -e "\n=== Checking for potential typos ==="
grep -i "triggerx" .github/ISSUE_TEMPLATE/*.md CONTRIBUTING.md | head -5

echo -e "\n=== Checking email formatting in templates ==="
grep -E "@|email" .github/ISSUE_TEMPLATE/*.md CONTRIBUTING.md

Length of output: 1512


🏁 Script executed:

#!/bin/bash
# Check for specific formatting and content issues
echo "=== Checking PR template structure ==="
grep -n "##\|###\|-\|\[\]" .github/PULL_REQUEST_TEMPLATE.md

echo -e "\n=== Checking if templates have proper sections ==="
echo "Bug report sections:"
grep -n "^##" .github/ISSUE_TEMPLATE/bug_report.md

echo -e "\nFeature request sections:"  
grep -n "^##" .github/ISSUE_TEMPLATE/feature_request.md

echo -e "\n=== Checking for markdown formatting consistency ==="
# Check for proper checkbox formatting
grep -n "\[ \]\|\[x\]" .github/ISSUE_TEMPLATE/*.md .github/PULL_REQUEST_TEMPLATE.md

Length of output: 2315


@meticha-admin Based on my analysis, here are the nitpicks to fix and the changes made in this PR:

🔧 Nitpicks to Fix:

1. Inconsistent Section Headers in Issue Templates

The issue templates use bold text (**text**) while the PR template uses proper markdown headers (## Header).

Fix needed in .github/ISSUE_TEMPLATE/bug_report.md:

## Describe the bug
## To Reproduce
## Expected behavior
## Screenshots
## Device Information
## Additional context

Fix needed in .github/ISSUE_TEMPLATE/feature_request.md:

## Is your feature request related to a problem?
## Describe the solution you'd like
## Describe alternatives you've considered
## Additional context

2. Missing Contact Information

No email contact provided for security issues or urgent matters.

Suggested addition to CONTRIBUTING.md:

## Security Issues
For security vulnerabilities, please email security@meticha.com instead of opening a public issue.

3. Minor Template Improvements

  • Add more specific testing instructions in PR template
  • Consider adding "Priority" field to bug reports

📋 Changes Made in This PR:

🏛️ Repository Governance

  • .github/CODEOWNERS - Assigns @cavin-macwan and @meticha-admin as code owners
  • CODE_OF_CONDUCT.md - Adds Contributor Covenant v2.1 for community standards

📝 Issue Templates

  • .github/ISSUE_TEMPLATE/bug_report.md - Standardized bug reporting with:
    • Device information collection
    • Reproduction steps
    • Expected vs actual behavior
    • TriggerX-specific version fields
  • .github/ISSUE_TEMPLATE/feature_request.md - Feature request workflow with:
    • Problem description
    • Solution proposals
    • Alternative considerations

🔄 Pull Request Template

  • .github/PULL_REQUEST_TEMPLATE.md - Comprehensive PR template including:
    • Change type checklist (bug fix, feature, breaking change, etc.)
    • Testing configuration for Android versions/devices
    • Before/after screenshot placeholders

📖 Contribution Guidelines

  • CONTRIBUTING.md - Detailed contributor guide covering:
    • Issue reporting process
    • Fork and branch workflow
    • Android Studio setup instructions
    • Coding standards (Kotlin, KDoc, unit tests)
    • Commit message guidelines

✅ What's Working Well:

  • Consistent branding with "TriggerX" throughout
  • Proper checkbox formatting in PR template
  • Comprehensive device information collection
  • Clear Android development workflow
  • Professional tone and structure

These templates will significantly improve the contribution experience and maintain code quality standards! 🚀

This commit updates the `CONTRIBUTING.md` file to include instructions on how to report security vulnerabilities.

Key changes:

- **CONTRIBUTING.md**:
    - Added a new "Security Issues" section.
    - Instructs users to report security vulnerabilities via email to cavin@meticha.com instead of opening public issues.

@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 (1)
CONTRIBUTING.md (1)

7-7: Replace hardcoded GitHub URL with a relative link
Please swap the absolute repository URL for a relative path to avoid hardcoding org/repo names.

- [make one!](https://github.com/meticha/triggerx/issues/new)
+ [make one!](../issues/new)
🧹 Nitpick comments (3)
CONTRIBUTING.md (3)

9-9: Link the issues page for discoverability
Turn the plain text reference to the issues page into a markdown hyperlink.

- feel free to ask on the project's issues page as well.
+ feel free to ask on the project's [issues page](../issues) as well.

41-53: Reference the Pull Request template
Explicitly link to the provided PR template to guide contributors.

*   Ensure your PR is made against the `main` branch (or the relevant development branch).
+   Use the provided [Pull Request template](.github/PULL_REQUEST_TEMPLATE.md) to ensure consistency.

65-66: Use a mailto link for the security contact
Convert the bare email address into a clickable mailto link per markdown best practices.

- For security vulnerabilities, please email cavin@meticha.com instead of opening a public issue.
+ For security vulnerabilities, please email [cavin@meticha.com](mailto:cavin@meticha.com) instead of opening a public issue.
🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

65-65: Bare URL used
null

(MD034, no-bare-urls)

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between fc0a9b3 and 606119c.

📒 Files selected for processing (1)
  • CONTRIBUTING.md (1 hunks)
🧰 Additional context used
🪛 markdownlint-cli2 (0.17.2)
CONTRIBUTING.md

65-65: Bare URL used
null

(MD034, no-bare-urls)

🔇 Additional comments (1)
CONTRIBUTING.md (1)

1-4: Title and greeting are clear and welcoming
The introduction sets a positive tone and clearly states the purpose of the document.

Comment thread CONTRIBUTING.md Outdated
This commit updates the Git clone URL in the CONTRIBUTING.md file.

Key changes:

- **CONTRIBUTING.md**:
    - Changed the example clone URL from `https://github.com/meticha/triggerx.git` to `https://github.com/<YOUR_USERNAME>/triggerx.git`.

This modification provides a more generic placeholder for users forking the repository, guiding them to use their own username when cloning.

@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 (1)
CONTRIBUTING.md (1)

7-7: Replace hardcoded issue URL with relative link or placeholder
The link uses an absolute URL to the upstream repo, which may break if the org or repo is renamed. Use a relative link to the issue templates (e.g., ../issues/new?template=bug_report.md) or a placeholder with <YOUR_USERNAME>.

🧹 Nitpick comments (2)
CONTRIBUTING.md (2)

9-9: Convert plain text to hyperlink
Link the phrase "project's issues page" to the actual issues page (e.g., ../issues) for clarity and better UX.


65-65: Wrap email address in angle brackets
Markdownlint flags bare URLs; wrap the email in < and > (e.g., <cavin@meticha.com>) to satisfy MD034.

🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

65-65: Bare URL used
null

(MD034, no-bare-urls)

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 606119c and e7a26a0.

📒 Files selected for processing (1)
  • CONTRIBUTING.md (1 hunks)
🧰 Additional context used
🪛 markdownlint-cli2 (0.17.2)
CONTRIBUTING.md

65-65: Bare URL used
null

(MD034, no-bare-urls)

🔇 Additional comments (1)
CONTRIBUTING.md (1)

21-24: Approve placeholder fork clone URL
Using <YOUR_USERNAME> clearly instructs contributors to clone from their own fork.

Comment thread CONTRIBUTING.md
@meticha-admin meticha-admin merged commit 18259f7 into main Jun 5, 2025
1 check passed
@meticha-admin meticha-admin deleted the imp/templates branch June 5, 2025 11:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

documentation Improvements or additions to documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants