diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index b5e2a15233..0000000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,17 +0,0 @@ - - - -## Release notes diff --git a/.github/workflows/pr-description.yaml b/.github/workflows/pr-description.yaml deleted file mode 100644 index 6720aff805..0000000000 --- a/.github/workflows/pr-description.yaml +++ /dev/null @@ -1,30 +0,0 @@ -name: PR Description - -on: - pull_request: - types: [opened, edited, reopened, synchronize] - merge_group: - branches: [main] - -jobs: - validate-pr-description: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Validate description - run: | - # Fetch PR description from env with jq - PR_DESCRIPTION=$(jq -r ".pull_request.body" "$GITHUB_EVENT_PATH") - KEYWORD="REQUIRED_KEYWORD" - - # Ensure PR author removed the welcome comment - if [[ $PR_DESCRIPTION = *""* ]]; then - echo "FAILED: Please remove the welcome comment from your PR description." - exit 1 - else - echo "OK: Welcome comment is removed your PR description." - fi - - echo "PASS: All checks OK!"