Skip to content

Commit 80904ef

Browse files
chore: fix cron
1 parent 21c63d5 commit 80904ef

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/cd.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@ name: cd
33
on:
44
push:
55
branches:
6-
- 'main'
6+
- '**'
77
tags:
8-
- 'v*.*.*'
8+
- '*.*.*'
9+
pull_request:
10+
branches:
11+
- 'main'
912

1013
jobs:
1114
build:

.release-it.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"git": {
3-
"commitMessage": "chore: release v${version}"
3+
"commitMessage": "chore: release ${version}"
44
},
55
"github": {
66
"release": true

renovate.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"automerge": true,
2727
"branchTopic": "lock-file-maintenance",
2828
"commitMessageAction": "Lock file maintenance",
29-
"schedule": ["after 10pm and before 5:00am every month"],
29+
"schedule": ["after 10pm on the first day of the month"],
3030
"prBodyDefinitions": {
3131
"Change": "All locks refreshed"
3232
}

0 commit comments

Comments
 (0)