summaryrefslogtreecommitdiff
path: root/.github/workflows/check-pr.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/check-pr.yaml')
-rw-r--r--.github/workflows/check-pr.yaml21
1 files changed, 0 insertions, 21 deletions
diff --git a/.github/workflows/check-pr.yaml b/.github/workflows/check-pr.yaml
deleted file mode 100644
index 08e907e83f..0000000000
--- a/.github/workflows/check-pr.yaml
+++ /dev/null
@@ -1,21 +0,0 @@
-name: Check PR
-
-on:
- pull_request:
- types: [opened, edited, reopened, synchronize]
-
-permissions:
- contents: read
-
-jobs:
- check-description:
- runs-on: ubuntu-latest
- steps:
- - name: Check PR description
- uses: actions/github-script@v8
- with:
- script: |
- const description = context.payload.pull_request.body || '';
- if (description.trim().length < 20) {
- core.setFailed("❌ PR description is too short. Please provide at least 20 characters.");
- }