Skip to content

Commit 81fcde1

Browse files
committed
chore: postinstall for dependabot template-oss PR
1 parent faf21a1 commit 81fcde1

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.commitlintrc.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ module.exports = {
55
rules: {
66
'type-enum': [2, 'always', ['feat', 'fix', 'docs', 'deps', 'chore']],
77
'header-max-length': [2, 'always', 80],
8-
'subject-case': [0, 'always', ['lower-case', 'sentence-case', 'start-case']],
8+
'subject-case': [0],
9+
'body-max-line-length': [0],
910
},
1011
}

.github/workflows/release-integration.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ jobs:
5454
- name: Publish
5555
env:
5656
PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }}
57+
RELEASES: ${{ inputs.releases }}
5758
run: |
5859
EXIT_CODE=0
5960
@@ -65,7 +66,7 @@ jobs:
6566
fi
6667
}
6768
68-
for release in $(echo '${{ inputs.releases }}' | jq -r '.[] | @base64'); do
69+
for release in $(echo $RELEASES | jq -r '.[] | @base64'); do
6970
PUBLISH_TAG=$(echo "$release" | base64 --decode | jq -r .publishTag)
7071
STATUS=$(each_release "$PUBLISH_TAG")
7172
if [[ "$STATUS" -eq 1 ]]; then

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
},
3434
"templateOSS": {
3535
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
36-
"version": "4.21.3",
36+
"version": "4.21.4",
3737
"publish": "true"
3838
},
3939
"tap": {

0 commit comments

Comments
 (0)