Skip to content

Commit 5993592

Browse files
authored
chore: bump versions weekly (#195)
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
1 parent e957795 commit 5993592

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/bump.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Bump
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: "0 6 * * 1" # "At 06:00 on Monday."
6+
7+
permission:
8+
contents: write
9+
pull-requests: write
10+
11+
jobs:
12+
bump-versions:
13+
name: Bump versions
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- run: pipx run nox -s pc_bump
18+
env:
19+
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
- run: pipx run nox -s gha_bump
21+
- run: git diff
22+
- uses: peter-evans/create-pull-request@v5
23+
with:
24+
title: "chore(deps): bump versions"
25+
body: |
26+
Update the versions mentioned in the docs pages.
27+
28+
PR generated by "Update dependencies" [workflow](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}).
29+
delete-branch: true

0 commit comments

Comments
 (0)