-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
Our CI currently let's runners run on old commits even though a newer one arrived.
This can be solved pretty easy by adding the following concurrency group to the ci.yaml file:
name: Workflow X
on: # ...
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: # ...This can save resources (and make this faster, if you have a limited amount of runners)
ivergara