├── .github └── workflows │ └── autoclose.yaml └── README.md /.github/workflows/autoclose.yaml: -------------------------------------------------------------------------------- 1 | name: Close Pull Requests 2 | 3 | permissions: 4 | pull-requests: write 5 | 6 | on: 7 | pull_request: 8 | schedule: 9 | - cron: '0 * * * *' 10 | workflow_dispatch: 11 | 12 | jobs: 13 | run: 14 | runs-on: ubuntu-latest 15 | steps: 16 | - name: Close Pull Requests 17 | run: > 18 | for pr in $(gh pr list --repo $REPO_NAME --json number --jq .[].number); do 19 | gh pr close --repo $REPO_NAME --comment "$COMMENT" $pr; 20 | done 21 | env: 22 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} 23 | REPO_NAME: python/cpython-bin-deps 24 | COMMENT: > 25 | We do not accept PRs on this repository. Please file an issue at 26 | https://github.com/python/cpython requesting an update to the 27 | binary packages in this repository. 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # cpython-bin-deps 2 | Binaries that the cpython build process depends on 3 | 4 | It is currently expected that this will only be useful on Windows, and in any 5 | case you should never need to clone this repository manually unless you are a 6 | core developer updating its contents. 7 | --------------------------------------------------------------------------------