arthur-debert / google-code-issues-migrator

A simple script to migrate issues from google code to github.
67 stars 56 forks source link

Allow to restrict the list of issues to migrate #38

Open SebastianZ opened 10 years ago

SebastianZ commented 10 years ago

To gain better control over which issues are ported, it should be possible to provide a search query as parameter for the script, e.g. -q, --query.

Examples: Issues created within the last year.

-q "opened-after:today-365"

Issues modified within the past three months having a test case.

--query "modified-after:today-90 Test=case-available"

Issues containing the text "1000":

-q "\"1000\""

Sebastian