ci: Auto bump pyside6 version#105
Merged
Merged
Conversation
mborgerson
commented
May 14, 2026
| git checkout -b "$BRANCH" | ||
| sed -i 's/PYSIDE_VERSION: "${{ steps.check.outputs.current }}"/PYSIDE_VERSION: "${{ steps.check.outputs.latest }}"/' .github/workflows/main.yml | ||
| git add .github/workflows/main.yml | ||
| git commit -m "Bump PySide6 to ${{ steps.check.outputs.latest }}" |
There was a problem hiding this comment.
Pull request overview
This PR changes the CI to stop querying PyPI for the latest PySide6 version during builds, and instead pins a PYSIDE_VERSION in the workflow while adding a scheduled workflow to automatically open PRs that bump that pinned version.
Changes:
- Add top-level
PYSIDE_VERSIONto the main CI workflow and propagate it via a job output (pyside_ver) instead of querying PyPI at runtime. - Add a new scheduled/manual workflow that checks PyPI for the latest PySide6 version and creates a PR to update
PYSIDE_VERSIONwhen needed.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/workflows/main.yml | Pins PySide6 version via workflow env and wires it through job outputs for downstream wheel builds. |
| .github/workflows/bump-pyside.yml | New scheduled workflow to detect new PySide6 releases and auto-create a bump PR. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| run: | | ||
| BRANCH="bump-pyside-${{ steps.check.outputs.latest }}" | ||
| git checkout -b "$BRANCH" | ||
| sed -i 's/PYSIDE_VERSION: "${{ steps.check.outputs.current }}"/PYSIDE_VERSION: "${{ steps.check.outputs.latest }}"/' .github/workflows/main.yml |
2c4b349 to
83e13e4
Compare
83e13e4 to
b161a0b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.