-
-
Notifications
You must be signed in to change notification settings - Fork 33
48 lines (38 loc) · 1.26 KB
/
dependencies.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Dependencies upgrade
on:
workflow_dispatch:
schedule:
- cron: "0 0 1 * *" # Runs every 1st day of month at midnight UTC
permissions:
contents: write # Grants write access to push changes
pull-requests: write # and create PRs
jobs:
run-bash-and-pr:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Upgrade dependencies
run: pnpm -F express-zod-api upgrade
- name: Branch name
id: create-branch
run: |
BRANCH_NAME="deps-$(date +%Y-%m-%d)"
echo "branch-name=$BRANCH_NAME" >> $GITHUB_OUTPUT
- name: Create a pull request
uses: peter-evans/create-pull-request@v5
with:
branch: ${{ steps.create-branch.outputs.branch-name }}
commit-message: "Upgrading all dependencies"
title: "Upgrading all dependencies"
body: "This PR contains automated updates generated by the monthly workflow."
labels: "dependencies"
assignees: "@robintail"
reviewers: "@robintail"