-
Notifications
You must be signed in to change notification settings - Fork 3
47 lines (41 loc) · 1.29 KB
/
bump.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
name: Bump dependencies
on:
workflow_dispatch:
schedule:
- cron: 45 19 * * * # 60 min before Dependabot
push:
paths:
- package.json
- package-lock.json
- .github/workflows/bump.yml
branches:
- main
permissions: write-all
jobs:
bump:
name: Bump
runs-on: ubuntu-20.04
concurrency: bump-group
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node.JS
uses: actions/[email protected]
with:
node-version: 18.11.0
cache: npm
- name: Bump
id: sync_types
uses: RedGuy12/[email protected]
- name: Commit
id: commit
uses: peter-evans/[email protected]
with:
token: ${{secrets.TOKEN}}
author:
github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
commit-message: Bump dependencies
branch: ci-bump-dependencies
delete-branch: true
title: Bump dependencies
body-path: ${{steps.sync_types.outputs.output-dir}}/output.md