raulcd opened a new pull request, #48887:
URL: https://github.com/apache/arrow/pull/48887

   ### Rationale for this change
   
   Draft releases appear on top of the releases page on GitHub, cluttering the 
releases page.
   
   ### What changes are included in this PR?
   
   Once we publish the official release we can delete draft release candidates. 
This can be done automatically on the `release.yml` workflow.
   
   ### Are these changes tested?
   
   Not on the workflow but I've deleted the draft releases for 23.0.0 (RC0 and 
RC1) executing the same command:
   ```
   $ gh release list --jq '.[] | select(.isDraft).tagName' --json 
isDraft,tagName --repo apache/arrow
   apache-arrow-23.0.0-rc1
   apache-arrow-23.0.0-rc0
   $ gh release list --jq '.[] | select(.isDraft).tagName' --json 
isDraft,tagName --repo apache/arrow | while read tag; do gh release delete 
${tag} --repo apache/arrow; done
   ✓ Deleted release apache-arrow-23.0.0-rc1
   ✓ Deleted release apache-arrow-23.0.0-rc0
   ```
   
   ### Are there any user-facing changes?
   
   No
   


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to