mirror of
https://github.com/dokploy/dokploy.git
synced 2026-06-13 19:09:49 +00:00
4f5f1ad841
Reduce the maximum allowed failures in PR quality check.
22 lines
368 B
YAML
22 lines
368 B
YAML
|
|
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:
|
|
blocked-commit-authors: "claude,copilot"
|
|
require-description: true
|
|
min-account-age: 5
|