From e8544c83370c017e73d3562ccea012dd8f4f8cf2 Mon Sep 17 00:00:00 2001 From: tdruez Date: Mon, 16 Feb 2026 09:59:43 +1300 Subject: [PATCH] chore: automatically closes low-quality and AI slop PRs Signed-off-by: tdruez --- .github/workflows/pr-quality.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/pr-quality.yml diff --git a/.github/workflows/pr-quality.yml b/.github/workflows/pr-quality.yml new file mode 100644 index 00000000..5348735b --- /dev/null +++ b/.github/workflows/pr-quality.yml @@ -0,0 +1,19 @@ +name: PR Quality + +permissions: + contents: read + issues: read + pull-requests: write + +on: + pull_request_target: + types: [opened, reopened] + +jobs: + anti-slop: + runs-on: ubuntu-latest + steps: + - uses: peakoss/anti-slop@v0 + with: + max-failures: 3 + blocked-commit-authors: "claude,copilot"