Skip to content
This repository was archived by the owner on Mar 6, 2024. It is now read-only.

isolate comment tags #397

Merged
merged 1 commit into from
Jul 31, 2023
Merged
Show file tree
Hide file tree
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
22 changes: 11 additions & 11 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions src/commenter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,37 +10,37 @@ const repo = context.repo
export const COMMENT_GREETING = `<img src="https://avatars.githubusercontent.com/in/347564?s=41" alt="Image description" width="20" height="20"> CodeRabbit`

export const COMMENT_TAG =
'<!-- This is an auto-generated comment by CodeRabbit -->'
'<!-- This is an auto-generated comment by OSS CodeRabbit -->'

export const COMMENT_REPLY_TAG =
'<!-- This is an auto-generated reply by CodeRabbit -->'
'<!-- This is an auto-generated reply by OSS CodeRabbit -->'

export const SUMMARIZE_TAG =
'<!-- This is an auto-generated comment: summarize by coderabbit.ai -->'
'<!-- This is an auto-generated comment: summarize by OSS CodeRabbit -->'

export const IN_PROGRESS_START_TAG =
'<!-- This is an auto-generated comment: summarize review in progress by coderabbit.ai -->'
'<!-- This is an auto-generated comment: summarize review in progress by OSS CodeRabbit -->'

export const IN_PROGRESS_END_TAG =
'<!-- end of auto-generated comment: summarize review in progress by coderabbit.ai -->'
'<!-- end of auto-generated comment: summarize review in progress by OSS CodeRabbit -->'

export const DESCRIPTION_START_TAG = `
<!-- This is an auto-generated comment: release notes by coderabbit.ai -->`
<!-- This is an auto-generated comment: release notes by OSS CodeRabbit -->`
export const DESCRIPTION_END_TAG =
'<!-- end of auto-generated comment: release notes by coderabbit.ai -->'
'<!-- end of auto-generated comment: release notes by OSS CodeRabbit -->'

export const RAW_SUMMARY_START_TAG = `<!-- This is an auto-generated comment: raw summary by coderabbit.ai -->
export const RAW_SUMMARY_START_TAG = `<!-- This is an auto-generated comment: raw summary by OSS CodeRabbit -->
<!--
`
export const RAW_SUMMARY_END_TAG = `-->
<!-- end of auto-generated comment: raw summary by coderabbit.ai -->`
<!-- end of auto-generated comment: raw summary by OSS CodeRabbit -->`

export const SHORT_SUMMARY_START_TAG = `<!-- This is an auto-generated comment: short summary by coderabbit.ai -->
export const SHORT_SUMMARY_START_TAG = `<!-- This is an auto-generated comment: short summary by OSS CodeRabbit -->
<!--
`

export const SHORT_SUMMARY_END_TAG = `-->
<!-- end of auto-generated comment: short summary by coderabbit.ai -->`
<!-- end of auto-generated comment: short summary by OSS CodeRabbit -->`

export const COMMIT_ID_START_TAG = '<!-- commit_ids_reviewed_start -->'
export const COMMIT_ID_END_TAG = '<!-- commit_ids_reviewed_end -->'
Expand Down