You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just ran this today - decided to go in blind and didn't try on a test project first. I should have...I have hundreds of duplicated labels now. The import itself seems to run ok, but every Store/Card got a warning about the label not being found...but instead of the migration seemed to create a new label for each story.
Not sure what caused this, but I just had a plain vanilla Trello board.
The text was updated successfully, but these errors were encountered:
If this happens to anyone else, its easy to clean up.
#setup Trello Client - its done inside this class' initializerPivotalToTrello::TrelloWrapper.new('<YOUR_TRELLO_KEY>','YOUR_TRELLO_SECRET')#Get your Board ID#Run Trello::Board.all then save the "id" attribute that matches your Board.board_id='FOUND_BOARD_ID'#create an array of all the label names you wish to removelabels_to_delete=%w(bugreleasefeaturechore)labels_to_delete.eachdo |delete_me|
Trello::Board.find(board_id).labels.select{|l| l.name == delete_me}.each(&:delete)end
All done. This easily beats manually deleting 700 errant labels.
Just ran this today - decided to go in blind and didn't try on a test project first. I should have...I have hundreds of duplicated labels now. The import itself seems to run ok, but every Store/Card got a warning about the label not being found...but instead of the migration seemed to create a new label for each story.
Not sure what caused this, but I just had a plain vanilla Trello board.
The text was updated successfully, but these errors were encountered: