Skip to content

Commit 2369b95

Browse files
committed
Cleanup
1 parent 7cf8b85 commit 2369b95

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

.github/workflows/manage-issue.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,8 @@ jobs:
151151
await updateIssue("open");
152152
}
153153
154-
const NO_REPRO_STEPS = reproSteps?.length < 25;
154+
const MIN_ALLOWED_REPRO_STEPS_CHARS = 10
155+
const NO_REPRO_STEPS = reproSteps?.length < MIN_ALLOWED_REPRO_STEPS_CHARS;
155156
const NO_SCREENSHOTS = !screenshotUrls ;
156157
157158
if( !NO_REPRO_STEPS && !NO_SCREENSHOTS ) {
@@ -202,7 +203,7 @@ jobs:
202203
}
203204
204205
if (NO_REPRO_STEPS) {
205-
comment += ` it doesn't look like you've provided much information on how to replicate the issue. Please edit your original post with clear steps needed to recreate this issue.`;
206+
comment += ` it doesn't look like you've provided much information on how to replicate the issue. Please edit your original post and update the "Steps to reproduce" section with clear steps needed to recreate this issue.`;
206207
}
207208
208209
closeWithComment(comment);

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ We are genuinely grateful to the following sponsors of DevDb:
5454

5555
- [Traycer AI](https://traycer.ai) - A Powerful AI assistance, natively integrated into your VS Code workflow.
5656

57+
## Features
58+
59+
-
60+
5761
## Screenshots
5862

5963
![image](resources/screenshots/new/providers-light-dark.png)

publish.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ if [ "$PRE_RELEASE" = true ]; then
111111
else
112112
# Bold, green text for standard release notification with a distinctive border
113113
echo -e "\n\x1b[1;32m┌────────────────────────────────────────────────────────────────┐"
114-
echo -e "│ 🚀 PUBLISH COMPLETE "
115-
echo -e " "
116-
echo -e "│ ✅ STANDARD RELEASE "
117-
echo -e "│ CD pipeline will now handle publishing to: "
118-
echo -e "│ • VS Code Marketplace "
119-
echo -e "│ • Open VSX Registry "
114+
echo -e "│ 🚀 PUBLISH COMPLETE │"
115+
echo -e "│ │"
116+
echo -e "│ ✅ STANDARD RELEASE │"
117+
echo -e "│ CD pipeline will now handle publishing to: │"
118+
echo -e "│ • VS Code Marketplace │"
119+
echo -e "│ • Open VSX Registry │"
120120
echo -e "└────────────────────────────────────────────────────────────────┘\x1b[0m\n"
121121
fi

0 commit comments

Comments
 (0)