-
Notifications
You must be signed in to change notification settings - Fork 30
👷 Add markdownlint pipeline #125
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
+320
−90
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
5e9e0a0
👷 Add markdownlint pipeline
NatoBoram 3c3ecc2
🔧 Add CODEOWNERS file for TypeScript review assignments
NatoBoram 01db36c
🚨 Fix all markdownlint violations
NatoBoram eb7a649
💚 mailto
NatoBoram 9c0dd27
📝 Update changelog to reflect SOC 2 Type II compliance announcement
NatoBoram 6191a10
📝 Use canonical note admonition in semgrep
NatoBoram 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 @@ | ||
*.ts @coderabbitai/typescript-reviewers | ||
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,24 @@ | ||
name: Node.js CI | ||
|
||
on: | ||
push: | ||
branches: main | ||
pull_request: | ||
branches: main | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v4 | ||
with: | ||
version: latest | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: latest | ||
cache: pnpm | ||
- run: pnpm install --frozen-lockfile --strict-peer-dependencies | ||
- run: pnpm run build | ||
- run: pnpm run lint |
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 @@ | ||
gitignore: true |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
default: true | ||
first-line-heading: false | ||
line-length: false | ||
link-fragments: false | ||
no-duplicate-heading: | ||
siblings_only: true | ||
no-inline-html: false | ||
single-title: false |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
./docs/changelog.md |
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 |
---|---|---|
|
@@ -24,25 +24,30 @@ There are various ways you can contribute: | |
|
||
1. **Fork** the repository to your GitHub account by visiting [CodeRabbit Docs GitHub repo](https://github.com/coderabbitai/coderabbit-docs). | ||
2. **Clone** your fork locally: | ||
|
||
```shell | ||
git clone [email protected]:YOUR_USERNAME/coderabbit-docs.git | ||
|
||
``` | ||
|
||
3. Create a new branch: | ||
```shell | ||
git checkout -b your_username/feature_description | ||
``` | ||
|
||
```shell | ||
git checkout -b your_username/feature_description | ||
``` | ||
|
||
4. Implement the changes then commit and push the changes from your working branch: | ||
```shell | ||
git commit -m "docs: add explanation about [section]" | ||
git push origin your_username/feature_description | ||
``` | ||
|
||
```shell | ||
git commit -m "docs: add explanation about [section]" | ||
git push origin your_username/feature_description | ||
``` | ||
|
||
## Commit Message Format 💬 | ||
|
||
We require all commits in this repository to adhere to the following commit message format. | ||
|
||
``` | ||
```txt | ||
<type>: <description> (#<issue number>) | ||
[optional body] | ||
|
@@ -52,7 +57,9 @@ This format is based on [Conventional Commits](https://www.conventionalcommits.o | |
Please refer to the Conventional Commits specification for more details. | ||
|
||
## Keeping your Fork Up-to-Date 🆕 | ||
|
||
To keep your fork updated with the latest changes from the upstream repository: | ||
|
||
```shell | ||
git remote add upstream https://github.com/coderabbitai/coderabbit-docs.git | ||
git fetch upstream | ||
NatoBoram marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
@@ -64,4 +71,4 @@ git rebase upstream/main | |
- Work on **one issue at a time** to avoid confusion. | ||
- If you need help, post in the `#support` channel on Discord. | ||
- Test your changes locally before submitting a PR. | ||
- While AI is cool, minimize its use for `direct team communication`. We value concise, genuine exchanges over scripted messages. | ||
- While AI is cool, minimize its use for _direct team communication_. We value concise, genuine exchanges over scripted messages. | ||
NatoBoram marked this conversation as resolved.
Show resolved
Hide resolved
|
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
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
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
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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ Welcome to CodeRabbit Support. Please refer to the following sections for | |
contacting our support team. Our support team will respond back as soon as | ||
possible. | ||
|
||
## Discord Server | ||
## Discord Server | ||
|
||
All CodeRabbit users have access to the [CodeRabbit Discord Server](http://discord.gg/coderabbit), where you can ask questions or see what others are doing with CodeRabbit. You will find CodeRabbit users and members of the CodeRabbit team actively engaged. | ||
|
||
|
@@ -20,24 +20,24 @@ For assistance from our support team, click the help icon located in the bottom | |
|
||
Complete the support ticket by providing your name, email, a description of your issue, and attaching any necessary files. If you are reporting a bug, please provide the GitHub or GitLab organization name. | ||
|
||
|
||
 | ||
 | ||
|
||
:::note | ||
If you are a paying user and cannot access the support ticket form in the CodeRabbit UI for some reason, you can contact CodeRabbit support at the following email address: [email protected]. | ||
If you are a paying user and cannot access the support ticket form in the CodeRabbit UI for some reason, you can contact CodeRabbit support at the following email address: [[email protected]](mailto:[email protected]). | ||
::: | ||
|
||
## Customer Responsibilities | ||
|
||
> To ensure efficient resolution of issues, customers are expected to | ||
> To ensure efficient resolution of issues, customers are expected to | ||
1. Provide detailed information about the issue. | ||
2. Cooperate with the Support team during troubleshooting. | ||
3. Utilize available self-service resources/docs for basic inquiries. | ||
|
||
## Etiquette | ||
Regardless of the method or location through which CodeRabbit provides Support, communication should be professional and respectful. Any communication that is deemed objectionable by CodeRabbit staff is not tolerated. This includes but is not limited to any communication that is abusive or contains profane language. | ||
|
||
Regardless of the method or location through which CodeRabbit provides Support, communication should be professional and respectful. Any communication that is deemed objectionable by CodeRabbit staff is not tolerated. This includes but is not limited to any communication that is abusive or contains profane language. | ||
|
||
> CodeRabbit reserves the right to terminate Support Services in the event of any such objectionable communication. | ||
|
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
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
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
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
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
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 |
---|---|---|
|
@@ -89,4 +89,3 @@ Remove extraneous f prefix | |
[Cppcheck]: ./cppcheck.md | ||
[CircleCi]: ./circleci.md | ||
[Semgrep]: ./semgrep.md | ||
|
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.