Bump #77
This file contains 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
name: Bump | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 6 * * 1" # "At 06:00 on Monday." | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
bump-versions: | |
name: Bump versions | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pipx run nox -s pc_bump | |
env: | |
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- run: pipx run nox -s gha_bump | |
- run: git diff | |
- uses: peter-evans/create-pull-request@v6 | |
with: | |
title: "chore(deps): bump versions" | |
body: | | |
Update the versions mentioned in the docs pages. | |
PR generated by "Update dependencies" [workflow](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}). Close and reopen to trigger ci. | |
delete-branch: true |