Skip to content

Commit 3969129

Browse files
committed
chore: postinstall for dependabot template-oss PR
1 parent 9f96d5b commit 3969129

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.commitlintrc.js

Lines changed: 2 additions & 1 deletion
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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
- name: Publish
5858
env:
5959
PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }}
60+
RELEASES: ${{ inputs.releases }}
6061
run: |
6162
EXIT_CODE=0
6263
@@ -68,7 +69,7 @@ jobs:
6869
fi
6970
}
7071
71-
for release in $(echo '${{ inputs.releases }}' | jq -r '.[] | @base64'); do
72+
for release in $(echo $RELEASES | jq -r '.[] | @base64'); do
7273
PUBLISH_TAG=$(echo "$release" | base64 --decode | jq -r .publishTag)
7374
STATUS=$(each_release "$PUBLISH_TAG")
7475
if [[ "$STATUS" -eq 1 ]]; then

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@
3333
"templateOSS": {
3434
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
3535
"content": "./scripts/template-oss",
36-
"version": "4.21.3"
36+
"version": "4.21.4"
3737
}
3838
}

0 commit comments

Comments
 (0)