From a0fa2e0f605c48eee97843340692493d84ca65b4 Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Wed, 10 Jun 2026 14:41:03 -0700 Subject: [PATCH] Limit auto-update PR to the files we actually changed `peter-evans/create-pull-request` defaults to `git add -A` which sweeps up the Python source tarballs and signatures that `relenv versions` leaves in the working tree (e.g. PR #296 included Python-3.13.14.tar.xz and a .asc). Constrain the action to the three files we mean to commit. --- .github/workflows/auto-update-versions.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/auto-update-versions.yml b/.github/workflows/auto-update-versions.yml index 96a68246..5b829af1 100644 --- a/.github/workflows/auto-update-versions.yml +++ b/.github/workflows/auto-update-versions.yml @@ -74,3 +74,7 @@ jobs: base: "main" delete-branch: true labels: "automated-update" + add-paths: | + relenv/python-versions.json + relenv/common.py + CHANGELOG.md