You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2022/08/04 04:48:18 UTC

[GitHub] [dolphinscheduler] zhongjiajie commented on issue #11289: [Feature][release] New tool find out not cherry-pick pr with specific milestone

zhongjiajie commented on issue #11289:
URL: https://github.com/apache/dolphinscheduler/issues/11289#issuecomment-1204754909

   I do some research to https://cli.github.com , it work well in PR by
   
   ```bash
   gh pr list --state merged --search "milestone:3.0.0-release" --json number,title --template '{{range .}}{{tablerow (printf "#%v" .number | autocolor "green") .title}}{{end}}' --limit 10000
   ```
   
   but when we try to find out some issue with milestone and the linked PR without milestone, it is do not work expect, only can filter issue
   
   ```bash
   gh issue list --state closed --milestone "3.0.0-release" --search "-label:wontfix" --json number,title,url --template '{{range .}}{{tablerow ( .number | autocolor "green") .title .url}}{{end}}' --limit 10000
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org