assignUser commented on issue #2: URL: https://github.com/apache/arrow-rs-object-store/issues/2#issuecomment-2741805929
Here is a script that'll re-title those issues: ```bash gh issue list -R apache/arrow-rs-object-store -L 400 --json 'title,number' -q '[.[] | select(.title | test("^\\[?object[-_ ]?store\\]?:?.*"; "i"))] | .[].title |= sub("^\\[?object[-_ ]?store\\]?:? *"; ""; "i")| .[]| [.number, .title] | @tsv' | while IFS=$'\t' read -r number title; do gh issue edit -R apache/arrow-rs-object-store "$number" -t "$title" done ``` -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org