We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebac504 commit 268b11bCopy full SHA for 268b11b
.github/workflows/pr-builder.yml
@@ -1,11 +1,16 @@
1
-name: PR Builder
+name: PR Builder - Asgardeo Docs
2
3
on:
4
pull_request:
5
paths:
6
- 'en/asgardeo/**'
7
- 'en/includes/**'
8
9
+# Avoid running multiple builds for the same PR.
10
+concurrency:
11
+ group: pr-builder-${{ github.ref }}
12
+ cancel-in-progress: true
13
+
14
jobs:
15
broken-link-checker:
16
runs-on: ubuntu-latest
@@ -26,7 +31,6 @@ jobs:
26
31
python -m pip install --upgrade pip
27
32
pip install -r en/asgardeo/requirements.txt
28
33
29
- # Step 3: Start MkDocs server in the background and run the broken link checker
30
34
- name: Start MkDocs server and run broken link checker
35
run: |
36
cd en/asgardeo
0 commit comments