We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9db4a4b commit 8cab8c9Copy full SHA for 8cab8c9
.github/workflows/lib.yml
@@ -7,7 +7,11 @@ on:
7
8
# Schedule weekly builds on every Sunday at 4 am
9
schedule:
10
- - cron: '0 4 * * SUN'
+ - cron: '0 4 * * SUN'
11
+
12
+concurrency:
13
+ group: libs-${{ github.event.pull_request.number || github.ref }}
14
+ cancel-in-progress: true
15
16
env:
17
# It's convenient to set variables for values used multiple times in the workflow
@@ -86,7 +90,7 @@ jobs:
86
90
runs-on: ubuntu-latest
87
91
steps:
88
92
# Check out repository
89
- - name: Checkout repository
93
+ - name: Checkout repository
94
uses: actions/checkout@v4
95
with:
96
token: ${{ env.GITHUB_TOKEN }}
0 commit comments