ci(libs): Add concurrency group to external libs test (#9535)

This commit is contained in:
Lucas Saavedra Vaz 2024-04-19 11:40:33 -03:00 committed by GitHub
parent 9db4a4b72f
commit 8cab8c9b31
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 }}