This is an automated email from the ASF dual-hosted git repository. jin pushed a commit to branch fix-ci in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-doc.git
commit a04fdb35622afa0aff5f25c00d3db32ca8ca265d Author: imbajin <[email protected]> AuthorDate: Sat Nov 15 00:54:35 2025 +0800 chore: update release workflow and .gitignore entries Bumped default release version to 1.7.0 and updated default GPG user in the release workflow. Added installation step for subversion on Ubuntu. Appended WARP.md to .gitignore. --- .github/workflows/validate-release.yml | 7 +++++-- .gitignore | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate-release.yml b/.github/workflows/validate-release.yml index e25a4404..747f0d78 100644 --- a/.github/workflows/validate-release.yml +++ b/.github/workflows/validate-release.yml @@ -6,11 +6,11 @@ on: release_version: required: true description: svn release version - default: '1.5.0' + default: '1.7.0' gpg_user: required: true description: current release manager (gpg username) - default: 'vgalaxies' + default: 'Junzhi Peng' push: branches: @@ -67,6 +67,9 @@ jobs: if [[ ${{ matrix.os }} =~ "macos" ]]; then brew install svn fi + if [[ ${{ matrix.os }} =~ "ubuntu" ]]; then + sudo apt-get install -y subversion + fi rm -rf dist/${{ inputs.release_version }} svn co ${URL_PREFIX}/${{ inputs.release_version }} dist/${{ inputs.release_version }} diff --git a/.gitignore b/.gitignore index 39893e59..86f2983b 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ GEMINI.md .vscode/settings.json .aider* .gemini/ +WARP.md
