Skip to content

Commit 1c7e565

Browse files
committed
Disable commenter from lint action
It doesn't work, and folks are used to just looking at required statuses on their PR's anyway.
1 parent fd1d505 commit 1c7e565

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

.github/workflows/lint-plugins.yml

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -28,29 +28,3 @@ jobs:
2828
-w /workspace \
2929
ghcr.io/stbenjam/claudelint:main \
3030
-v --strict
31-
32-
- name: Comment on PR (on failure)
33-
if: failure() && github.event_name == 'pull_request'
34-
uses: actions/github-script@v7
35-
with:
36-
script: |
37-
const output = `⚠️ Plugin linter found issues.
38-
39-
Run locally to see details:
40-
\`\`\`bash
41-
docker run --rm -v $(pwd):/workspace ghcr.io/stbenjam/claudelint:main
42-
\`\`\`
43-
44-
Or install and run directly:
45-
\`\`\`bash
46-
pip install claudelint
47-
claudelint
48-
\`\`\`
49-
`;
50-
51-
github.rest.issues.createComment({
52-
issue_number: context.issue.number,
53-
owner: context.repo.owner,
54-
repo: context.repo.repo,
55-
body: output
56-
});

0 commit comments

Comments
 (0)