declapract-typescript-ehmpathy 0.47.1 → 0.47.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -85,14 +85,14 @@ runs:
|
|
|
85
85
|
echo " └── ✨ release created: $RELEASE_URL"
|
|
86
86
|
|
|
87
87
|
# comment on the release pr
|
|
88
|
-
gh pr comment "$PR_NUMBER" --body "released at ${RELEASE_URL}"
|
|
88
|
+
gh pr comment "$PR_NUMBER" --body "🐢 released at ${RELEASE_URL}"
|
|
89
89
|
|
|
90
90
|
# extract pr links from the release pr body and comment on each
|
|
91
91
|
PR_BODY=$(gh pr view "$PR_NUMBER" --json body --jq '.body')
|
|
92
|
-
REFERENCED_PRS=$(echo "$PR_BODY" | grep -oE '
|
|
92
|
+
REFERENCED_PRS=$(echo "$PR_BODY" | grep -oE '/pull/[0-9]+' | grep -oE '[0-9]+' | sort -u || true)
|
|
93
93
|
|
|
94
94
|
for REF_PR in $REFERENCED_PRS; do
|
|
95
|
-
gh pr comment "$REF_PR" --body "released at ${RELEASE_URL}" 2>/dev/null || true
|
|
95
|
+
gh pr comment "$REF_PR" --body "🐢 released at ${RELEASE_URL}" 2>/dev/null || true
|
|
96
96
|
done
|
|
97
97
|
|
|
98
98
|
echo "🌊 cutta tag complete"
|
|
@@ -298,7 +298,7 @@ runs:
|
|
|
298
298
|
|
|
299
299
|
# build pr body in temp file to avoid yaml parsing issues
|
|
300
300
|
PR_BODY_FILE="/tmp/pr-body.md"
|
|
301
|
-
echo "noice! ready to let these changes ride?" > "$PR_BODY_FILE"
|
|
301
|
+
echo "🐢 noice! ready to let these changes ride?" > "$PR_BODY_FILE"
|
|
302
302
|
echo "---" >> "$PR_BODY_FILE"
|
|
303
303
|
echo "" >> "$PR_BODY_FILE"
|
|
304
304
|
cat "${{ steps.changelog.outputs.changelog-file }}" >> "$PR_BODY_FILE"
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "declapract-typescript-ehmpathy",
|
|
3
3
|
"author": "ehmpathy",
|
|
4
4
|
"description": "declapract best practices declarations for typescript",
|
|
5
|
-
"version": "0.47.
|
|
5
|
+
"version": "0.47.2",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "src/index.js",
|
|
8
8
|
"repository": "ehmpathy/declapract-typescript-ehmpathy",
|