You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@uniffle.apache.org by GitBox <gi...@apache.org> on 2022/09/16 06:47:47 UTC

[GitHub] [incubator-uniffle] kaijchen commented on a diff in pull request #225: Support cancelling previous ci actions

kaijchen commented on code in PR #225:
URL: https://github.com/apache/incubator-uniffle/pull/225#discussion_r972668938


##########
.github/workflows/build.yml:
##########
@@ -21,6 +21,11 @@ name: build
 
 on: [push, pull_request]
 
+concurrency:
+  group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+  cancel-in-progress: true

Review Comment:
   Please change this line to only cancel previous PR actions.
   
   ```suggestion
     cancel-in-progress: ${{ github.event_name == 'pull_request' }}
   ```



-- 
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: issues-unsubscribe@uniffle.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@uniffle.apache.org
For additional commands, e-mail: issues-help@uniffle.apache.org