ci(libs): Add concurrency group to external libs test (#9535)
This commit is contained in:
parent
9db4a4b72f
commit
8cab8c9b31
1 changed files with 6 additions and 2 deletions
8
.github/workflows/lib.yml
vendored
8
.github/workflows/lib.yml
vendored
|
|
@ -7,7 +7,11 @@ on:
|
|||
|
||||
# Schedule weekly builds on every Sunday at 4 am
|
||||
schedule:
|
||||
- cron: '0 4 * * SUN'
|
||||
- cron: '0 4 * * SUN'
|
||||
|
||||
concurrency:
|
||||
group: libs-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
env:
|
||||
# It's convenient to set variables for values used multiple times in the workflow
|
||||
|
|
@ -86,7 +90,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
# Check out repository
|
||||
- name: Checkout repository
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
token: ${{ env.GITHUB_TOKEN }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue