Skip to content

Commit a9f7826

Browse files
authored
Add PR quality workflow with anti-slop checks
1 parent ba4db47 commit a9f7826

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/pr-quality.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: PR Quality
2+
3+
permissions:
4+
contents: read
5+
issues: read
6+
pull-requests: write
7+
8+
on:
9+
pull_request_target:
10+
types: [opened, reopened]
11+
12+
jobs:
13+
anti-slop:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: peakoss/anti-slop@v0
17+
with:
18+
max-failures: 3
19+
blocked-commit-authors: "claude,copilot"
20+
blocked-terms: |
21+
PINEAPPLE
22+

0 commit comments

Comments
 (0)