Skip to content

Commit a1ab4af

Browse files
committed
👷 add concurrency control to docs.yml workflow to prevent overlapping runs
1 parent a9ec801 commit a1ab4af

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/docs.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@ name: Docs
22

33
on:
44
workflow_dispatch:
5-
branches:
6-
- main
75
workflow_call:
86

97
permissions:
108
contents: write
119

10+
concurrency:
11+
group: docs-${{ github.ref }}
12+
cancel-in-progress: false
13+
1214
jobs:
1315
docs:
1416
name: "Docs"

0 commit comments

Comments
 (0)