Skip to content

Commit 94c73d7

Browse files
committed
Do not include checkboxes to avoid loss when overwriting
1 parent 63055cf commit 94c73d7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/scripts/track_fixmes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ for file in $(find . -type f); do
3434
lineNumber=$(echo $fixme | cut -d ":" -f 1)
3535
lineContent=$(echo $fixme | cut -d ":" -f 2-)
3636
comment="$comment
37-
- [ ] [$file](https://github.com/stdlib-js/stdlib/blob/develop/$file#L$lineNumber): $lineContent"
37+
- [$file](https://github.com/stdlib-js/stdlib/blob/develop/$file#L$lineNumber): $lineContent"
3838
fi
3939
done
4040

.github/workflows/scripts/track_todos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ for file in $(find . -type f); do
3434
lineNumber=$(echo $todo | cut -d ":" -f 1)
3535
lineContent=$(echo $todo | cut -d ":" -f 2-)
3636
comment="$comment
37-
- [ ] [$file](https://github.com/stdlib-js/stdlib/blob/develop/$file#L$lineNumber): $lineContent"
37+
- [$file](https://github.com/stdlib-js/stdlib/blob/develop/$file#L$lineNumber): $lineContent"
3838
fi
3939
done
4040

0 commit comments

Comments
 (0)