1313 runs-on : ubuntu-latest
1414 # Only run if the release workflow succeeded
1515 if : ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
16-
16+
1717 permissions :
1818 contents : write
1919 pull-requests : write
@@ -22,14 +22,14 @@ jobs:
2222 - name : Checkout code
2323 uses : actions/checkout@v4
2424 with :
25- ref : dev-v6 # or your main branch
25+ ref : dev # or your main branch
2626 fetch-depth : 0
2727
2828 - name : Set up Node.js
2929 uses : actions/setup-node@v4
3030 with :
31- node-version : ' 24.x'
32- cache : ' yarn'
31+ node-version : " 24.x"
32+ cache : " yarn"
3333
3434 - name : Install dependencies
3535 run : yarn install --frozen-lockfile
@@ -65,28 +65,28 @@ jobs:
6565 title : " docs: Update API documentation for v${{ steps.get_version.outputs.version }}"
6666 body : |
6767 ## 📚 API Documentation Update
68-
68+
6969 This PR updates the API documentation after the **v${{ steps.get_version.outputs.version }}** release.
70-
70+
7171 ### 🎉 Release Version
7272 **v${{ steps.get_version.outputs.version }}**
73-
73+
7474 ### 📝 Changes
7575 - Auto-generated API documentation from TypeScript source code
7676 - Updated `apps/sequelize-guard-docs/content/docs/api/`
7777 - Generated **${{ steps.check_changes.outputs.file_count }}** documentation files
78-
78+
7979 ### 🤖 Generated by
8080 - **Workflow:** `update-docs.yml`
8181 - **Triggered by:** Release workflow completion
8282 - **Script:** `scripts/generate-api-docs.mjs`
8383 - **Run:** [#${{ github.run_number }}](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
84-
84+
8585 ---
86-
86+
8787 **Note:** This is an automated PR. Please review the changes before merging.
8888 branch : docs/update-api-v${{ steps.get_version.outputs.version }}-${{ github.run_number }}
89- base : dev-v6
89+ base : dev
9090 labels : documentation,automated
9191 assignees : ${{ github.actor }}
9292
0 commit comments