Skip to content

Commit 3cb7cf2

Browse files
committed
fix(index): added empty commit function
1 parent a38649b commit 3cb7cf2

File tree

6 files changed

+39963
-16166
lines changed

6 files changed

+39963
-16166
lines changed

.github/workflows/node.js.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v3
13-
- name: Use Node 16
14-
uses: actions/setup-node@v3
12+
- uses: actions/checkout@v4
13+
- name: Use Node 20
14+
uses: actions/setup-node@v4
1515
with:
16-
node-version: 16
16+
node-version: 20
1717
- run: npm ci
1818
- run: npm run format:check
1919
- run: npm run build

action.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,14 @@ inputs:
2727
description: "The file location to write changes to"
2828
default: "README.md"
2929
required: false
30+
EMPTY_COMMIT_MSG:
31+
description: "Commit message used when there are no updates"
32+
default: ":memo: empty commit to keep workflow active after 60 days of no activity"
33+
required: false
3034
branding:
3135
color: yellow
3236
icon: activity
3337

3438
runs:
35-
using: node16
39+
using: node20
3640
main: dist/index.js

0 commit comments

Comments
 (0)