Skip to content

Commit ff51477

Browse files
authored
Create update-lockfile.yml
1 parent 0313f9d commit ff51477

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Update Lockfile
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
update:
8+
name: Update Lockfile
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout Repository
12+
uses: actions/checkout@v5
13+
14+
- name: Setup Node.js
15+
uses: actions/setup-node@v5
16+
with:
17+
node-version: "lts/*"
18+
19+
- name: Install Dependencies
20+
run: npm install
21+
22+
- name: Commit Lockfile
23+
uses: stefanzweifel/git-auto-commit-action@v6
24+
with:
25+
commit_message: 'chore: update package-lock.json'
26+
file_pattern: 'package-lock.json'

0 commit comments

Comments
 (0)