We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2459a28 commit cfe6d2bCopy full SHA for cfe6d2b
.github/workflows/autoclose.yaml
@@ -4,16 +4,17 @@ on:
4
pull_request_target:
5
types: [opened]
6
branches:
7
- - '**'
+ - '**/*'
8
9
jobs:
10
run:
11
runs-on: ubuntu-latest
12
steps:
13
- # Pin to commit hash to avoid surprises via the action
14
- - uses: superbrothers/close-pull-request@9c18513d320d7b2c7185fb93396d0c664d5d8448
15
- with:
16
- comment: |
+ - name: Close Pull
+ run: gh pr close --comment "$COMMENT"
+ env:
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17
+ COMMENT: >
18
We do not accept PRs on this repository. Please file an issue at
19
https://github.com/python/cpython requesting an update to the
20
source packages in this repository.
0 commit comments