We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d50c57 commit 4456ef2Copy full SHA for 4456ef2
.github/workflows/todos-extract-from-code.yml
@@ -133,8 +133,8 @@ jobs:
133
if [ -n "$NEW_PUZZLES" ]; then
134
echo "Found puzzles without related issues:"
135
echo "$NEW_PUZZLES" | while read PUZZLE_ID; do
136
- grep "$PUZZLE_ID" todos-in-code.tsv | IFS=$'\t' read SKIP_PUZZLE_ID TICKET TITLE REST
137
- echo "$PUZZLE_ID from #$TICKET: $(echo "$TITLE" | sed 's|^"||;s|"$||;s|""|"|'g)"
+ TITLE="$(grep "$PUZZLE_ID" todos-in-code.tsv | cut -d$'\t' -f3 | sed 's|^"||;s|"$||;s|""|"|g')"
+ echo "- $PUZZLE_ID: $TITLE"
138
done
139
HAVE_PUZZLES_WITHOUT_ISSUES=yes
140
else
0 commit comments