Add autocancellation of the stale PR GHA jobs (#663)
Co-authored-by: Abhinav Singh <mailsforabhinav@gmail.com>
This commit is contained in:
parent
9fa14d70ff
commit
eeb11e2b7c
|
@ -3,6 +3,15 @@ name: Proxy.py Library
|
|||
|
||||
on: [push, pull_request] # yamllint disable-line rule:truthy
|
||||
|
||||
concurrency:
|
||||
group: >-
|
||||
${{
|
||||
github.workflow
|
||||
}}-${{
|
||||
github.event.pull_request.number || github.sha
|
||||
}}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}-latest
|
||||
|
|
Loading…
Reference in New Issue