CI: cancel other builds if others are building for the same commit too (this happens when a commit is tagged)

This commit is contained in:
kekrby 2022-08-28 17:18:47 +03:00
parent bf21f20d9e
commit 60fe40e509

View file

@ -5,6 +5,9 @@ on: [push, pull_request]
jobs:
CI:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.sha }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v3