Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
6dc5520
Merge pull request #4283 from VisActor/main
fangsmile Jul 31, 2025
95e163e
docs: generate changelog of release v1.19.5
fangsmile Jul 31, 2025
dc6fab7
docs: update release log
fangsmile Aug 1, 2025
9f64aab
Merge pull request #4284 from VisActor/docs/generate-changelog-v1.19.5
fangsmile Aug 1, 2025
0e28423
chore: add workflow to sync main to develop after release
Rui-Sun Aug 1, 2025
3cc2fae
fix: fix sync-main-to-develop.yml
Rui-Sun Aug 1, 2025
e3fb781
fix: pivot table set columnHierarchyType gird expand tree error #4254
fangsmile Aug 1, 2025
0672a4a
docs: update changlog of rush
fangsmile Aug 1, 2025
c2561dc
docs: add cell custom reactive layout demo
fangsmile Aug 1, 2025
7e06413
docs: update demo link
fangsmile Aug 1, 2025
08a33c9
feat: pivot chart add columnWidthConfig option
fangsmile Aug 4, 2025
7b1e6c1
docs: update changlog of rush
fangsmile Aug 4, 2025
79c3832
docs: supplement gantt date document
fangsmile Aug 7, 2025
1cee21a
refactor: add table export plugin
fangsmile Aug 7, 2025
98a4369
docs: update changlog of rush
fangsmile Aug 7, 2025
9ac2519
chore: update lock file
fangsmile Aug 7, 2025
2ac6dd9
fix: when no records markline render error #4305
fangsmile Aug 7, 2025
da3cea1
docs: update changlog of rush
fangsmile Aug 7, 2025
68b90fa
fix: correct month iteration logic in getRecords
Rui-Sun Aug 1, 2025
be64105
fix: fix error when current date not in calendar range #4297
Rui-Sun Aug 7, 2025
a88a584
fix: fix dayTitles display error #4298
Rui-Sun Aug 7, 2025
456530d
Merge pull request #4308 from VisActor/4305-bug-gantt-noRecords-markl…
fangsmile Aug 8, 2025
babe504
Merge pull request #4293 from VisActor/feat/pivot_chart_columnWidthCo…
fangsmile Aug 8, 2025
701cbae
Merge pull request #4287 from VisActor/4254-bug-columnHierarchyType-g…
fangsmile Aug 8, 2025
65a2718
Merge pull request #4286 from VisActor/chore/auto-sync-main
fangsmile Aug 8, 2025
4810399
Merge remote-tracking branch 'origin/develop' into refactor/export-ta…
fangsmile Aug 8, 2025
b944173
Merge pull request #4307 from VisActor/refactor/export-table-plugin
fangsmile Aug 8, 2025
42ce1d0
build: prelease version 1.19.6
github-actions[bot] Aug 8, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions .github/workflows/sync-main-to-develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: Sync main to develop after release

on:
pull_request:
types:
- closed
branches:
- main

jobs:
if_merged:
if: github.event.pull_request.merged == true

runs-on: macOS-13

permissions:
contents: write
pull-requests: write

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v3
- run: |
git config user.name ${{ github.actor }}
git config user.email ${{ github.actor }}@users.noreply.github.com

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: './common/config/rush/pnpm-lock.yaml'

# Install rush
- name: Install rush
run: node common/scripts/install-run-rush.js install --bypass-policy

- name: Get version
id: package-version
uses: xile611/read-package-version-action@main
with:
path: packages/vtable

- name: Create a new branch
run: |
git status
git checkout -b sync/main-${{ steps.package-version.outputs.current_version }}
git push origin sync/main-${{ steps.package-version.outputs.current_version }}

- name: Create Pull Request
uses: dustinirving/create-pr@v1.0.2
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: '[Auto Sync] Sync the code from branch main to branch develop after release ${{ steps.package-version.outputs.current_version }}'
base: develop
head: sync/main-${{ steps.package-version.outputs.current_version }}
reviewers: fangsmile
body: 'Sync the code from branch main to branch develop after release ${{ steps.package-version.outputs.current_version }}'
Loading
Loading