-
Notifications
You must be signed in to change notification settings - Fork 3
Sync with master #39
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
Merged
Sync with master #39
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
a133157
Removed Jira links from readme (#36)
cb-jarunmadhesh 2a15273
Add GitHub Actions workflow for secret scanning and configure pre-com…
cb-jarunmadhesh e4554a1
Merge pull request #37 from chargebee/chore/EE-496
cb-mohitbhatia 402c43a
Add resolveAllComments function to delete comments from cursor[bot] o…
cb-jarunmadhesh fc7cacf
Comment out the notification part for testing
cb-jarunmadhesh 68133e0
Update resolveAllComments to delete comments from both cursor[bot] an…
cb-jarunmadhesh b194bff
fix
cb-jarunmadhesh ae7c670
comment out slack notifications again for testing
cb-jarunmadhesh 1a4d973
remove code changes done for testing
cb-jarunmadhesh b69e305
console error
cb-jarunmadhesh 5f6dbb6
remove export
cb-jarunmadhesh 4b44165
Merge pull request #38 from chargebee/fix/EE-500
cb-jarunmadhesh 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,10 @@ | ||
| name: CB Secret PR Scan | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [opened, synchronize, reopened] | ||
|
|
||
| jobs: | ||
| SecretScanning: | ||
| uses: chargebee/cb-secrets-scanner/.github/workflows/cb-secret-scan.yml@main | ||
| secrets: inherit |
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,5 @@ | ||
| repos: | ||
| - repo: https://github.com/gitleaks/gitleaks | ||
| rev: v8.18.4 | ||
| hooks: | ||
| - id: gitleaks |
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Unnecessary API Calls in Merge Check Loop
Calling
resolveAllCommentsinside theisMergeableretry loop causes it to repeatedly fetch and delete bot comments. This leads to unnecessary API calls (up to 5 times per check) and potential rate limiting, while also adding a side effect to a function meant for checking mergeability.