commit - c414a013eb17711ab2e1ea447aab4a3a25a09d53
commit + e8256d916369996c214b5f28673d32f910996708
blob - /dev/null
blob + 7a612a85e9f98a9b0f6e2f2a39f4a2d7ec0d44da (mode 644)
--- /dev/null
+++ .github/workflows/closepr.yml
+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 send any patches to the GoT mailing list. See: https://lists.openbsd.org/cgi-bin/mj_wwwusr?user=&passw=&func=lists-long-full&extra=gameoftrees"
+