-
-
Notifications
You must be signed in to change notification settings - Fork 43
chore: improve repository configuration #511
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+159
−15
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
b62f7dd
reorganize badges
seqre 487d006
refer to CONTRIBUTING.md from README.md
seqre 70aaaae
discord call to action
seqre 208e04e
add sponshorship section
seqre 5d44080
add issue templates
seqre 9d7caa3
add PR template
seqre f9c6715
Potential fix for pull request finding
seqre File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| name: Bug report | ||
| description: Report a bug or unexpected behavior in Cot | ||
| type: bug | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Thank you for taking the time to report a bug! Please fill out the sections below to help us reproduce and fix it. | ||
|
|
||
| If you're unsure whether this is a bug, consider opening a [discussion](https://github.com/cot-rs/cot/discussions/new/choose) or joining our [Discord server](https://discord.cot.rs/) first. | ||
|
|
||
| - type: textarea | ||
| id: description | ||
| attributes: | ||
| label: Description | ||
| description: A clear and concise description of the bug — what happened and what you expected to happen instead. | ||
| placeholder: | | ||
| When I do X, Y happens. I expected Z to happen instead. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: reproduction | ||
| attributes: | ||
| label: Steps to reproduce | ||
| description: | | ||
| Provide a [Minimal, Complete, and Verifiable example](https://stackoverflow.com/help/mcve) that demonstrates the bug. The easier it is to reproduce, the faster we can fix it. | ||
| placeholder: | | ||
| 1. Create a project with `cot new my-app` | ||
| 2. Add the following to `src/main.rs`: ... | ||
| 3. Run `cargo run` | ||
| 4. See error: ... | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: expected | ||
| attributes: | ||
| label: Expected behavior | ||
| description: What did you expect to happen? | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: environment | ||
| attributes: | ||
| label: Environment | ||
| description: Please fill in the details below. | ||
| value: | | ||
| **Cot version**: | ||
| **Rust environment**: | ||
| ``` | ||
| // Output of `rustc --version --verbose` | ||
| ``` | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: context | ||
| attributes: | ||
| label: Additional context | ||
| description: Any other information that might be relevant — logs, error messages, related issues, etc. | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| blank_issues_enabled: false | ||
| contact_links: | ||
| - name: Ask a question or share feedback | ||
| url: https://github.com/cot-rs/cot/discussions/new/choose | ||
| about: Use GitHub Discussions for questions, ideas, or general feedback. | ||
| - name: Chat with us on Discord | ||
| url: https://discord.cot.rs/ | ||
| about: Join our Discord server for real-time discussion and help. |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| name: Feature request | ||
| description: Propose a new feature or improvement for Cot | ||
| type: feature | ||
seqre marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Thank you for helping shape Cot! Before opening a feature request, consider starting a [discussion](https://github.com/cot-rs/cot/discussions/new/choose) or joining our [Discord server](https://discord.cot.rs/) to get early feedback. | ||
|
|
||
| - type: textarea | ||
| id: problem | ||
| attributes: | ||
| label: Problem statement | ||
| description: What problem are you trying to solve? Help us understand the motivation before jumping to solutions. | ||
| placeholder: | | ||
| Currently, I have to do X every time I want to Y, which is tedious because... | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: solution | ||
| attributes: | ||
| label: Proposed solution | ||
| description: Describe what you'd like Cot to support. Include API sketches or code examples if possible. | ||
| placeholder: | | ||
| Cot could provide a `#[derive(Foo)]` macro that automatically... | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: alternatives | ||
| attributes: | ||
| label: Alternatives considered | ||
| description: What other approaches did you consider, and why aren't they sufficient? | ||
|
|
||
| - type: textarea | ||
| id: drawbacks | ||
| attributes: | ||
| label: Drawbacks | ||
| description: Are there any downsides or trade-offs to your proposed solution? | ||
|
|
||
| - type: textarea | ||
| id: context | ||
| attributes: | ||
| label: Additional context | ||
| description: Any other relevant information, links to prior art, or related issues. | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| ## Related issue or discussion | ||
|
|
||
| <!-- Every PR must be preceded by an issue or discussion. | ||
| Link it here using "Fixes #123", "Closes #123", or "Related to #123". --> | ||
|
|
||
| ## Description | ||
|
|
||
| <!-- What does this PR do and why? --> | ||
|
|
||
| ## Type of change | ||
|
|
||
| - [ ] Bug fix | ||
| - [ ] New feature | ||
| - [ ] Documentation | ||
| - [ ] Refactor / cleanup | ||
| - [ ] Performance improvement | ||
| - [ ] Other (describe above) | ||
|
|
||
| ## Checklist | ||
|
|
||
| - [ ] I've read the [contributing guide](CONTRIBUTING.md) | ||
|
|
||
| - [ ] Tests pass locally (`just test-all`) | ||
| - [ ] Code passes clippy (`just clippy`) | ||
| - [ ] Code is properly formatted (`cargo fmt`) | ||
| - [ ] New tests added (regression test for bugs, coverage for new features) | ||
| - [ ] Documentation (both code and site) updated (if applicable) | ||
|
|
||
| <!-- Please mark the PR as in progress if you haven't completed the checklist --> | ||
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.