Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions docs/CONTRIBUTING.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,35 @@ const example = "Hello, Continue!";

</Tip>

### Linking Your PR to Issues

<Info>

**Important**: When your PR addresses a specific issue, make sure to link it using GitHub keywords.

</Info>

To automatically link your PR to an issue and close it when the PR is merged, use one of these keywords in your PR description:

- `closes #issue_number`
- `fixes #issue_number`
- `resolves #issue_number`

**Example PR description:**
```markdown
Improved the installation guide with clearer steps for Windows users.

Closes #1234
```

This helps us track which issues are being worked on and automatically closes them when your PR is merged.

<Tip>

Learn more about linking PRs to issues in the [GitHub documentation](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests).

</Tip>

## 💡 Tips for Success

- **Use the Continue agent**: It knows our documentation standards and will save you time
Expand Down
Loading