We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 737ff24 commit 33b72c5Copy full SHA for 33b72c5
.github/workflows/lint_random_files.yml
@@ -209,6 +209,10 @@ jobs:
209
env:
210
GITHUB_TOKEN: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
211
run: |
212
+ strip_ansi() {
213
+ sed -r 's/\x1B\[[0-9;]*[mK]//g'
214
+ }
215
+
216
BODY_FILE="$GITHUB_WORKSPACE/lint_issue_body.md"
217
cat << EOF > "$BODY_FILE"
218
## EditorConfig Linting Failures
@@ -224,14 +228,15 @@ jobs:
224
228
### Error Details
225
229
226
230
\`\`\`
227
- $(cat lint_editorconfig_errors.txt)
231
+ $(cat lint_editorconfig_errors.txt | strip_ansi)
232
233
EOF
234
235
. "$GITHUB_WORKSPACE/.github/workflows/scripts/create_sub_issue" \
236
'Fix EditorConfig lint errors' \
237
"$BODY_FILE" \
- "5156"
238
+ "5156" \
239
+ "Good First Issue"
240
241
rm "$BODY_FILE"
242
0 commit comments