We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f58d0b commit ce5d553Copy full SHA for ce5d553
src/main/scripts/ci/connect-todos-to-issues.sh
@@ -213,10 +213,10 @@ while IFS=$'\t' read -r PUZZLE_ID UNUSED_TICKET TITLE UNUSED_REST; do
213
error " 2) investigate and manually resolve this collision"
214
fatal ''
215
216
- elif [ "$ISSUE_STATE" != 'open' ]; then
+ elif [ "$ISSUE_STATE" != 'open' ] && [ "$ISSUE_STATE" != 'reopen' ]; then
217
error ''
218
error "$PUZZLE_ID => #$ISSUE_ID: $ISSUE_URL has unknown state"
219
- error "Expected: 'open' or 'closed'"
+ error "Expected: 'open', 'reopen' or 'closed'"
220
error "Found: $ISSUE_STATE"
221
222
fi
0 commit comments