-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (33 loc) · 978 Bytes
/
patch-pulse-bot.yml
File metadata and controls
41 lines (33 loc) · 978 Bytes
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
name: PatchPulse Dependency Bot
on:
schedule:
- cron: '0 4 * * *' # Every day at 04:00 UTC (06:00 GMT+2)
workflow_dispatch:
jobs:
patch-pulse:
name: Open dependency update PRs
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build action
run: pnpm --filter @patch-pulse/action build
- uses: ./packages/action
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
update-types: 'patch,minor,major'
auto-merge: 'patch'
assignees: '["barrymichaeldoyle"]'
reviewers: '["barrymichaeldoyle"]'
commit-message-prefix: 'chore(deps):'