From fd71e85ed4097641d5ae3ecd62c1db396bcf8bbb Mon Sep 17 00:00:00 2001 From: elliotllliu <55885132+elliotllliu@users.noreply.github.com> Date: Tue, 10 Mar 2026 05:16:01 -0400 Subject: [PATCH] ci: add anti-slop GitHub Action to detect low-quality AI PRs (#33193) Co-authored-by: GitHub User --- .github/workflows/anti-slop.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/anti-slop.yml diff --git a/.github/workflows/anti-slop.yml b/.github/workflows/anti-slop.yml new file mode 100644 index 0000000000..448f7c4b90 --- /dev/null +++ b/.github/workflows/anti-slop.yml @@ -0,0 +1,17 @@ +name: Anti-Slop PR Check + +on: + pull_request_target: + types: [opened, edited, synchronize] + +permissions: + pull-requests: write + contents: read + +jobs: + anti-slop: + runs-on: ubuntu-latest + steps: + - uses: peakoss/anti-slop@v0 + with: + github-token: ${{ secrets.GITHUB_TOKEN }}