This template shows the smallest practical setup for the CPython Patch PR Action. It monitors a single CPython minor stream and opens a pull request whenever a new patch becomes available.
.
├── .github
│ └── workflows
│ └── python-version-patch.yml
└── README.md (this file)
- Create a repository named
python-version-patch-pr-example-minimal(or similar). - Copy this directory into the new repository root.
- Replace
<owner>in the badge URL above with your GitHub username or organization. - Optionally adjust the cron schedule or tracked CPython version in the workflow.
The included workflow runs weekly and can also be triggered manually via
workflow_dispatch. The action writes updated pins, commits them to the
chore/bump-python-<track> branch, and opens or updates a corresponding pull
request.