feat(kanban): remove Backlog and Planning lists from board initialization
- Removed "Backlog" list creation (position 65536) from board setup - Removed "Planning" list creation (position 196608) from board setup - Retained core workflow lists: To Do, In Progress, Review, Done
This commit is contained in:
@@ -198,9 +198,7 @@ if [ -z "$BOARD_ID" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Create required lists (skip if exists)
|
# Create required lists (skip if exists)
|
||||||
pcli list create --board $BOARD_ID --name "Backlog" --position 65536 2>/dev/null || true
|
|
||||||
pcli list create --board $BOARD_ID --name "To Do" --position 131072 2>/dev/null || true
|
pcli list create --board $BOARD_ID --name "To Do" --position 131072 2>/dev/null || true
|
||||||
pcli list create --board $BOARD_ID --name "Planning" --position 196608 2>/dev/null || true
|
|
||||||
pcli list create --board $BOARD_ID --name "In Progress" --position 262144 2>/dev/null || true
|
pcli list create --board $BOARD_ID --name "In Progress" --position 262144 2>/dev/null || true
|
||||||
pcli list create --board $BOARD_ID --name "Review" --position 327680 2>/dev/null || true
|
pcli list create --board $BOARD_ID --name "Review" --position 327680 2>/dev/null || true
|
||||||
pcli list create --board $BOARD_ID --name "Done" --position 393216 2>/dev/null || true
|
pcli list create --board $BOARD_ID --name "Done" --position 393216 2>/dev/null || true
|
||||||
|
|||||||
Reference in New Issue
Block a user