From 2820f25348789b6c3fbe99a81e7bf7cc2a2c95d1 Mon Sep 17 00:00:00 2001 From: wong2 Date: Sun, 21 Sep 2025 15:14:09 +0800 Subject: [PATCH] Add auto close pr action --- .github/workflows/main.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..fb10067 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,14 @@ +name: Close Pull Request + +on: + pull_request_target: + types: [opened] + +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: superbrothers/close-pull-request@v3 + with: + # Optional. Post a issue comment just before closing a pull request. + comment: "We do not accept PRs. Please submit your MCP on the website: https://mcpservers.org/submit"