Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions .github/workflows/check-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,11 @@ jobs:
fi

- name: Create Pull Request
id: cpr
if: steps.update-readme.outputs.changes_detected == 'true' || steps.check.outputs.new_minor_version
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.PAT_TOKEN || secrets.GITHUB_TOKEN }}
commit-message: |
chore: Update Python versions

Expand All @@ -208,11 +209,16 @@ jobs:
$(cat /tmp/versions.txt)
```

### What happens next?
1. Review the changes
2. Merge this PR to trigger a new build with updated versions
3. Images will be built and pushed automatically
### Auto-merge enabled
This PR will automatically merge when all required status checks pass.

---
🤖 Auto-generated by weekly version check workflow
labels: dependencies,automated

- name: Enable auto-merge
if: steps.cpr.outputs.pull-request-number
run: |
gh pr merge ${{ steps.cpr.outputs.pull-request-number }} --auto --squash
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}