We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ece8cdb commit 9d50c57Copy full SHA for 9d50c57
.github/workflows/todos-extract-from-code.yml
@@ -129,8 +129,8 @@ jobs:
129
if: env.PUZZLES_FILES_MODIFIED == 'no'
130
working-directory: generated-todos
131
run: |
132
- NEW_PIZZLES="$(comm -23 <(cut -d$'\t' -f1 todos-in-code.tsv | sort) <(cut -d$'\t' -f1 todos-on-github.tsv | sort))"
133
- if [ -n "$NEW_PIZZLES" ]; then
+ NEW_PUZZLES="$(comm -23 <(cut -d$'\t' -f1 todos-in-code.tsv | sort) <(cut -d$'\t' -f1 todos-on-github.tsv | sort))"
+ 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
0 commit comments