You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Configuring dev-docs.json for GitHub App Documentation Generation
4
+
5
+
This guide will walk you through the process of configuring the `dev-docs.json` file to enable automatic documentation generation using the Dev-Docs GitHub App.
6
+
7
+
## Step 1: Locate the dev-docs.json file
8
+
9
+
The `dev-docs.json` file should be located in the root directory of your repository.
10
+
11
+
## Step 2: Basic Structure
12
+
13
+
Ensure your `dev-docs.json` file has the following basic structure:
14
+
15
+
```json
16
+
{
17
+
"gitHubApp": {
18
+
"workflows": []
19
+
}
20
+
}
21
+
```
22
+
23
+
## Step 3: Configure Workflows
24
+
25
+
To enable documentation generation, add the `generateDocs` workflow to the `workflows` array:
26
+
27
+
```json
28
+
{
29
+
"gitHubApp": {
30
+
"workflows": ["generateDocs"]
31
+
}
32
+
}
33
+
```
34
+
35
+
Note: The `workflows` array accepts specific enum values. Currently, the supported values are:
0 commit comments