We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21c63d5 commit 80904efCopy full SHA for 80904ef
.github/workflows/cd.yml
@@ -3,9 +3,12 @@ name: cd
3
on:
4
push:
5
branches:
6
- - 'main'
+ - '**'
7
tags:
8
- - 'v*.*.*'
+ - '*.*.*'
9
+ pull_request:
10
+ branches:
11
+ - 'main'
12
13
jobs:
14
build:
.release-it.json
@@ -1,6 +1,6 @@
1
{
2
"git": {
- "commitMessage": "chore: release v${version}"
+ "commitMessage": "chore: release ${version}"
},
"github": {
"release": true
renovate.json
@@ -26,7 +26,7 @@
26
"automerge": true,
27
"branchTopic": "lock-file-maintenance",
28
"commitMessageAction": "Lock file maintenance",
29
- "schedule": ["after 10pm and before 5:00am every month"],
+ "schedule": ["after 10pm on the first day of the month"],
30
"prBodyDefinitions": {
31
"Change": "All locks refreshed"
32
}
0 commit comments