We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c58ea7f commit 3bd4a0dCopy full SHA for 3bd4a0d
.github/workflows/update-api-docs.yml
@@ -23,16 +23,21 @@ jobs:
23
24
steps:
25
- name: ⬇️ Checkout docs-v2 (This) Repository
26
+ # This is where the output commit will happen, so we keep fetch-depth: 0
27
uses: actions/checkout@v4
28
with:
29
path: docs-v2
30
fetch-depth: 0
31
32
- name: ⬇️ Checkout api2 Source Repository
33
+ # Check out the external API repo into a separate directory
34
35
- repository: atko-cic/api2 # <<< VERIFY THIS REPO PATH
36
+ repository: atko-cic/api2
37
path: api2
38
+ token: ${{ secrets.API_READ_TOKEN }}
39
+ # Explicitly setting a low depth for faster checkout and to avoid auth conflicts
40
+ fetch-depth: 1
41
42
- name: 🛠️ Setup Node.js
43
uses: actions/setup-node@v4
0 commit comments