Skip to content

Commit ceaf77e

Browse files
committedApr 21, 2024·
chore: postinstall for dependabot template-oss PR
1 parent 377d981 commit ceaf77e

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
@@ -62,7 +62,7 @@
6262
},
6363
"templateOSS": {
6464
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
65-
"version": "4.21.3",
65+
"version": "4.21.4",
6666
"publish": "true"
6767
}
6868
}

0 commit comments

Comments
 (0)
Please sign in to comment.