特定のorgで自身が出したPRのタイトル(日付順)
code:shell
org=sunakan;gh repo list --no-archived "${org}" --json name --jq '.[].name' -L1000 | xargs -I{} gh pr list --repo "${org}/{}" --author "@me" --state all --limit 500 --json createdAt,title --jq '.[] | .createdAt, "{}", .title | @tsv' | tee pr_title_list_non_sort.tsv && (cat pr_title_list_non_sort.tsv | sort > pr_title_list.tsv && rm pr_title_list_non_sort.tsv)