Skip to content

Commit 67b4737

Browse files
committed
Update base branch for auto-docs generation to dev
1 parent 31d8463 commit 67b4737

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

.github/workflows/ci-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
branches:
88
- master
99
- dev
10-
- dev-v6
1110

1211
jobs:
1312
build-and-test:

.github/workflows/update-docs.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
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

docs/DOCS_AUTOMATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ The workflow is triggered automatically after a successful release, but can also
111111

112112
Edit `.github/workflows/update-docs.yml`:
113113

114-
- Change the target branch (default: `dev-v6`)
114+
- Change the target branch (default: `dev`)
115115
- Modify PR labels or assignees
116116
- Adjust commit messages
117117

0 commit comments

Comments
 (0)