We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e957795 commit 5993592Copy full SHA for 5993592
1 file changed
.github/workflows/bump.yml
@@ -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