HyukjinKwon opened a new pull request, #56:
URL: https://github.com/apache/spark-connect-rust/pull/56

   ## Summary
   
   CI workflows keep running to completion even after a newer commit supersedes 
them, so stale runs pile up in the Actions queue. Add a `concurrency` group 
keyed on the workflow and ref with `cancel-in-progress: true` so a new run 
cancels the older, superseded one.
   
   Applied to `rust.yml`, `lint.yml`, and `build_python_connect.yml`. 
`release.yml` is intentionally left out (releases must not be cancelled), and 
`docs.yml` already has this.
   
   ```yaml
   concurrency:
     group: ${{ github.workflow }}-${{ github.ref }}
     cancel-in-progress: true
   ```
   
   JIRA: https://issues.apache.org/jira/browse/SPARK-58995
   
   This pull request and its description were written by Isaac.
   


-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to