Skip to content

Commit b8a3c58

Browse files
authored
ci: Temporarily disable analyse-code job (#6953)
## Explanation This hopefully fixes some rate limit issues. ## References <!-- Are there any issues that this pull request is tied to? Are there other links that reviewers should consult to understand these changes better? Are there client or consumer pull requests to adopt any breaking changes? For example: * Fixes #12345 * Related to #67890 --> ## Checklist - [ ] I've updated the test suite for new or updated code as appropriate - [ ] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [ ] I've communicated my changes to consumers by [updating changelogs for packages I've changed](https://github.com/MetaMask/core/tree/main/docs/contributing.md#updating-changelogs), highlighting breaking changes as necessary - [ ] I've prepared draft pull requests for clients and consumer packages to resolve any breaking changes <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Comments out the `analyse-code` job and removes it from the `all-jobs-complete` dependencies in the main CI workflow. > > - **CI Workflow (`.github/workflows/main.yml`)**: > - Comment out `analyse-code` (Code scanner) job. > - Remove `analyse-code` from `all-jobs-complete.needs` (left as commented reference). > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 7f517d9. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 8d858b8 commit b8a3c58

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/main.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ jobs:
2424
run: ${{ steps.download-actionlint.outputs.executable }} -color
2525
shell: bash
2626

27-
analyse-code:
28-
name: Code scanner
29-
needs: check-workflows
30-
uses: ./.github/workflows/security-code-scanner.yml
31-
permissions:
32-
actions: read
33-
contents: read
34-
security-events: write
35-
secrets:
36-
SECURITY_SCAN_METRICS_TOKEN: ${{ secrets.SECURITY_SCAN_METRICS_TOKEN }}
37-
APPSEC_BOT_SLACK_WEBHOOK: ${{ secrets.APPSEC_BOT_SLACK_WEBHOOK }}
27+
# analyse-code:
28+
# name: Code scanner
29+
# needs: check-workflows
30+
# uses: ./.github/workflows/security-code-scanner.yml
31+
# permissions:
32+
# actions: read
33+
# contents: read
34+
# security-events: write
35+
# secrets:
36+
# SECURITY_SCAN_METRICS_TOKEN: ${{ secrets.SECURITY_SCAN_METRICS_TOKEN }}
37+
# APPSEC_BOT_SLACK_WEBHOOK: ${{ secrets.APPSEC_BOT_SLACK_WEBHOOK }}
3838

3939
lint-build-test:
4040
name: Lint, build, and test
@@ -77,7 +77,7 @@ jobs:
7777
name: All jobs complete
7878
runs-on: ubuntu-latest
7979
needs:
80-
- analyse-code
80+
# - analyse-code
8181
- lint-build-test
8282
outputs:
8383
passed: ${{ steps.set-output.outputs.passed }}

0 commit comments

Comments
 (0)