From 9c554c0f492d6e669c9f45281faa1aa13f1a1a18 Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 15:00:55 +0800 Subject: [PATCH 01/28] Add Vale testing workflow for pull requests --- .github/workflows/vale-test.yml | 39 +++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/vale-test.yml diff --git a/.github/workflows/vale-test.yml b/.github/workflows/vale-test.yml new file mode 100644 index 0000000000..9541c57db0 --- /dev/null +++ b/.github/workflows/vale-test.yml @@ -0,0 +1,39 @@ +name: Vale Test + +on: + pull_request: + workflow_dispatch: + +jobs: + vale: + name: Vale Check + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v6 + + - name: Install Vale + run: | + curl -fsSL https://github.com/errata-ai/vale/releases/latest/download/vale_3.12.0_Linux_64-bit.tar.gz \ + | tar xz + sudo mv vale /usr/local/bin/ + + - name: Create Vale config + run: | + cat > .vale.ini < Date: Thu, 16 Jul 2026 15:04:59 +0800 Subject: [PATCH 02/28] Update vale-test.yml --- .github/workflows/vale-test.yml | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/.github/workflows/vale-test.yml b/.github/workflows/vale-test.yml index 9541c57db0..f89a4cdbf7 100644 --- a/.github/workflows/vale-test.yml +++ b/.github/workflows/vale-test.yml @@ -6,19 +6,13 @@ on: jobs: vale: - name: Vale Check + name: Vale Grammar and Style Check runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v6 - - name: Install Vale - run: | - curl -fsSL https://github.com/errata-ai/vale/releases/latest/download/vale_3.12.0_Linux_64-bit.tar.gz \ - | tar xz - sudo mv vale /usr/local/bin/ - - name: Create Vale config run: | cat > .vale.ini < Date: Thu, 16 Jul 2026 15:07:04 +0800 Subject: [PATCH 03/28] Update vale-test.yml --- .github/workflows/vale-test.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/vale-test.yml b/.github/workflows/vale-test.yml index f89a4cdbf7..f83ee714c5 100644 --- a/.github/workflows/vale-test.yml +++ b/.github/workflows/vale-test.yml @@ -13,20 +13,8 @@ jobs: - name: Checkout uses: actions/checkout@v6 - - name: Create Vale config - run: | - cat > .vale.ini < Date: Thu, 16 Jul 2026 15:07:55 +0800 Subject: [PATCH 04/28] Add Vale configuration file .vale.ini --- .vale.ini | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .vale.ini diff --git a/.vale.ini b/.vale.ini new file mode 100644 index 0000000000..692852a319 --- /dev/null +++ b/.vale.ini @@ -0,0 +1,9 @@ +StylesPath = .github/styles + +MinAlertLevel = suggestion + +[formats] +mdx = md + +[*.{md,mdx}] +BasedOnStyles = Vale From e4c5dea0c48d46a7956b666cbbb975e268775a99 Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 15:17:15 +0800 Subject: [PATCH 05/28] Create vale-test.mdx --- docs/hpc/vale-test.mdx | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 docs/hpc/vale-test.mdx diff --git a/docs/hpc/vale-test.mdx b/docs/hpc/vale-test.mdx new file mode 100644 index 0000000000..23c96997d2 --- /dev/null +++ b/docs/hpc/vale-test.mdx @@ -0,0 +1,7 @@ +# `rsync` and `rclone` + +This is is a test. + +:::warning +This is a warning. +::: From 6fd85290ba9419222c59b4842d2308066dda5810 Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:05:42 +0800 Subject: [PATCH 06/28] Update .vale.ini --- .vale.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vale.ini b/.vale.ini index 692852a319..41da3bf8f8 100644 --- a/.vale.ini +++ b/.vale.ini @@ -1,4 +1,4 @@ -StylesPath = .github/styles +StylesPath = vale-styles MinAlertLevel = suggestion @@ -6,4 +6,4 @@ MinAlertLevel = suggestion mdx = md [*.{md,mdx}] -BasedOnStyles = Vale +BasedOnStyles = Vale, TitleCase From 8baeb3d21f00c3c6e2ed90c68ca823af30d7fea9 Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:08:26 +0800 Subject: [PATCH 07/28] Create TitleCase.yml --- vale-styles/TitleCase/TitleCase.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 vale-styles/TitleCase/TitleCase.yml diff --git a/vale-styles/TitleCase/TitleCase.yml b/vale-styles/TitleCase/TitleCase.yml new file mode 100644 index 0000000000..d18b353e95 --- /dev/null +++ b/vale-styles/TitleCase/TitleCase.yml @@ -0,0 +1,14 @@ +extends: capitalization +message: "'%s' should use title case" +level: warning +scope: heading +match: $title +style: Chicago +exceptions: + - rclone + - rsync + - HDF5 + - LMDB + - SLURM + - GPU + - HPC From c6d2171b78ec484a9c71dbeed4719f41d9e0309b Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:19:20 +0800 Subject: [PATCH 08/28] Update 02_data_transfers.md --- docs/hpc/03_storage/02_data_transfers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/hpc/03_storage/02_data_transfers.md b/docs/hpc/03_storage/02_data_transfers.md index 5152b80881..7604b4516a 100644 --- a/docs/hpc/03_storage/02_data_transfers.md +++ b/docs/hpc/03_storage/02_data_transfers.md @@ -26,7 +26,7 @@ logout ### Linux & Mac Tools -#### `scp` And `rsync` +#### `scp` and `rsync` :::warning Please use Data Transfer Nodes (DTNs) with these tools. While one can transfer data while on login nodes, it is considered a bad practice because it can degrade the node's performance. ::: From e132a18b0a1284746bad7bf6a1a416af3e4f93b8 Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:29:55 +0800 Subject: [PATCH 09/28] Create accept.txt --- vale-styles/Vocabulary/accept.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 vale-styles/Vocabulary/accept.txt diff --git a/vale-styles/Vocabulary/accept.txt b/vale-styles/Vocabulary/accept.txt new file mode 100644 index 0000000000..dfedada784 --- /dev/null +++ b/vale-styles/Vocabulary/accept.txt @@ -0,0 +1,3 @@ +HPC +sbatch +rsync From 29cb023cecfa398581f30f732373dba09cb92b34 Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:30:48 +0800 Subject: [PATCH 10/28] Update .vale.ini --- .vale.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vale.ini b/.vale.ini index 41da3bf8f8..883e2d3944 100644 --- a/.vale.ini +++ b/.vale.ini @@ -1,6 +1,6 @@ StylesPath = vale-styles -MinAlertLevel = suggestion +Vocab = Vocabulary [formats] mdx = md From 8056cee22c51d8ad079489890bf0d804ae6d8602 Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:36:13 +0800 Subject: [PATCH 11/28] Update .vale.ini --- .vale.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vale.ini b/.vale.ini index 883e2d3944..7df9c289b0 100644 --- a/.vale.ini +++ b/.vale.ini @@ -1,6 +1,7 @@ StylesPath = vale-styles -Vocab = Vocabulary +Vocab = RTS +VocabulariesPath = config/vocabularies [formats] mdx = md From 4c23eca4cad65b58ea3cae501b8d71be04159f1a Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:37:26 +0800 Subject: [PATCH 12/28] Rename accept.txt to accept.txt --- {vale-styles/Vocabulary => config/vocabularies}/accept.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {vale-styles/Vocabulary => config/vocabularies}/accept.txt (100%) diff --git a/vale-styles/Vocabulary/accept.txt b/config/vocabularies/accept.txt similarity index 100% rename from vale-styles/Vocabulary/accept.txt rename to config/vocabularies/accept.txt From a312ec63408f36b956a333ba16e8edb43b7bef8d Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:40:40 +0800 Subject: [PATCH 13/28] Rename config/vocabularies/accept.txt to config/vocabularies/RTS/RTS/accept.txt --- config/vocabularies/{ => RTS/RTS}/accept.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename config/vocabularies/{ => RTS/RTS}/accept.txt (100%) diff --git a/config/vocabularies/accept.txt b/config/vocabularies/RTS/RTS/accept.txt similarity index 100% rename from config/vocabularies/accept.txt rename to config/vocabularies/RTS/RTS/accept.txt From c292db2207752681f414bd58190b5ea4e18238ab Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:42:16 +0800 Subject: [PATCH 14/28] Rename config/vocabularies/RTS/RTS/accept.txt to config/vocabularies/RTS/accept.txt --- config/vocabularies/RTS/{RTS => }/accept.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename config/vocabularies/RTS/{RTS => }/accept.txt (100%) diff --git a/config/vocabularies/RTS/RTS/accept.txt b/config/vocabularies/RTS/accept.txt similarity index 100% rename from config/vocabularies/RTS/RTS/accept.txt rename to config/vocabularies/RTS/accept.txt From f60879841de5ffe44465359c0983ff1674433b44 Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:51:47 +0800 Subject: [PATCH 15/28] Update vale-test.yml --- .github/workflows/vale-test.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/vale-test.yml b/.github/workflows/vale-test.yml index f83ee714c5..3664ca0b25 100644 --- a/.github/workflows/vale-test.yml +++ b/.github/workflows/vale-test.yml @@ -20,3 +20,16 @@ jobs: files: | docs/ src/pages/ + - name: Debug Vale paths + run: | + echo "Current directory:" + pwd + + echo "Files:" + find config -maxdepth 3 -print || true + echo "Vocab directory:" + ls -la config/vocabularies || true + ls -la config/vocabularies/RTS || true + + echo "Vale config:" + cat .vale.ini From 5a1bfa2f690f45e4291162c756f93a2ceab144f1 Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:53:40 +0800 Subject: [PATCH 16/28] Update .vale.ini --- .vale.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vale.ini b/.vale.ini index 7df9c289b0..af4afdf86d 100644 --- a/.vale.ini +++ b/.vale.ini @@ -1,7 +1,7 @@ StylesPath = vale-styles Vocab = RTS -VocabulariesPath = config/vocabularies +VocabPath = config/vocabularies [formats] mdx = md From 4be7e298a52165ef926e8439ff697b05f7aad284 Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:56:56 +0800 Subject: [PATCH 17/28] Update .vale.ini --- .vale.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/.vale.ini b/.vale.ini index af4afdf86d..4523df8bde 100644 --- a/.vale.ini +++ b/.vale.ini @@ -1,7 +1,6 @@ StylesPath = vale-styles Vocab = RTS -VocabPath = config/vocabularies [formats] mdx = md From 8970c2bfaa751d9d235114368b0e1b2d61bcc348 Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:57:58 +0800 Subject: [PATCH 18/28] Rename config/vocabularies/RTS/accept.txt to vale-styles/config/vocabularies/RTS/accept.txt --- {config => vale-styles/config}/vocabularies/RTS/accept.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {config => vale-styles/config}/vocabularies/RTS/accept.txt (100%) diff --git a/config/vocabularies/RTS/accept.txt b/vale-styles/config/vocabularies/RTS/accept.txt similarity index 100% rename from config/vocabularies/RTS/accept.txt rename to vale-styles/config/vocabularies/RTS/accept.txt From defb288afbd1c31807d5c1cce54bce2e318c6fc5 Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 17:09:51 +0800 Subject: [PATCH 19/28] Update vale-test.yml --- .github/workflows/vale-test.yml | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/.github/workflows/vale-test.yml b/.github/workflows/vale-test.yml index 3664ca0b25..dd1d0d17ee 100644 --- a/.github/workflows/vale-test.yml +++ b/.github/workflows/vale-test.yml @@ -20,16 +20,23 @@ jobs: files: | docs/ src/pages/ - - name: Debug Vale paths + - name: Collect spelling candidates run: | - echo "Current directory:" - pwd + set -uo pipefail - echo "Files:" - find config -maxdepth 3 -print || true - echo "Vocab directory:" - ls -la config/vocabularies || true - ls -la config/vocabularies/RTS || true + vale --output=JSON docs src/pages > vale-results.json || true - echo "Vale config:" - cat .vale.ini + echo "### Spelling candidates" >> "$GITHUB_STEP_SUMMARY" + echo "" >> "$GITHUB_STEP_SUMMARY" + + jq -r ' + .[] + | .alerts[] + | select(.Check == "Vale.Spelling") + | .Message + ' vale-results.json \ + | sed -E "s/.*'([^']+)'.*/\1/" \ + | sort -u \ + | while read word; do + echo "- $word" >> "$GITHUB_STEP_SUMMARY" + done From 6d7eae07e18f8f164c89878c05e55d0673bf3d44 Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 17:11:54 +0800 Subject: [PATCH 20/28] Update vale-test.yml --- .github/workflows/vale-test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/vale-test.yml b/.github/workflows/vale-test.yml index dd1d0d17ee..3a2b794240 100644 --- a/.github/workflows/vale-test.yml +++ b/.github/workflows/vale-test.yml @@ -20,6 +20,12 @@ jobs: files: | docs/ src/pages/ + + - name: Install Vale + uses: vale-cli/vale-action@v2 + with: + version: 3.12.0 + - name: Collect spelling candidates run: | set -uo pipefail From 9d530491f796bfffddb3e06d550e723d089d966b Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 17:14:36 +0800 Subject: [PATCH 21/28] Update vale-test.yml --- .github/workflows/vale-test.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.github/workflows/vale-test.yml b/.github/workflows/vale-test.yml index 3a2b794240..f83ee714c5 100644 --- a/.github/workflows/vale-test.yml +++ b/.github/workflows/vale-test.yml @@ -20,29 +20,3 @@ jobs: files: | docs/ src/pages/ - - - name: Install Vale - uses: vale-cli/vale-action@v2 - with: - version: 3.12.0 - - - name: Collect spelling candidates - run: | - set -uo pipefail - - vale --output=JSON docs src/pages > vale-results.json || true - - echo "### Spelling candidates" >> "$GITHUB_STEP_SUMMARY" - echo "" >> "$GITHUB_STEP_SUMMARY" - - jq -r ' - .[] - | .alerts[] - | select(.Check == "Vale.Spelling") - | .Message - ' vale-results.json \ - | sed -E "s/.*'([^']+)'.*/\1/" \ - | sort -u \ - | while read word; do - echo "- $word" >> "$GITHUB_STEP_SUMMARY" - done From 408c4ce35e40f414fb0e5900bc456074b8c0132f Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 17:36:32 +0800 Subject: [PATCH 22/28] Update accept.txt --- .../config/vocabularies/RTS/accept.txt | 286 ++++++++++++++++++ 1 file changed, 286 insertions(+) diff --git a/vale-styles/config/vocabularies/RTS/accept.txt b/vale-styles/config/vocabularies/RTS/accept.txt index dfedada784..21514edcc5 100644 --- a/vale-styles/config/vocabularies/RTS/accept.txt +++ b/vale-styles/config/vocabularies/RTS/accept.txt @@ -1,3 +1,289 @@ HPC sbatch rsync +repo +Carahsoft +GCP's +Burwood +GPUs +config +hostname +squeue +vglrun +CPUs +Slurm +scp +NYU's +hadoop +kubernetes +Dataproc +autoscaling +Autoscaling +Dataproc's +lefthand +LLMs +Portkey +Agentic +agentic +langchain +llamaindex +catalouge +chatbots +Colab +ACLs +getfacl +setfacl +gsutil +gcloud +JSONLines +json +hdfs +AMPLab +Trino +Conda +prepopulated +netids +DOIs +XQuartz +walkthrough +debian +linux +sudo +openconnect +sms +PI_One +tandon_advanced +tandon_priority +courant +lpinto +bpeher +lzanna +RTXPro +cds +cilvr +mren +xwang +Powershell +cmd +powershell +exe +Globus +gDTNs +Infiniband +DTNs +sharename +rclone +myquota +inode +inodes +VSCode +RStudio +globus +mfa +png +jpg +lmd +lmdb +Tensorflow +Pytorch +numpy +jpeg +tibble +Bcolz +Zarr +Parallelization +RClone +Rclone +kevin +susie's +susie +synset +synsets +Kaggle +MJSynth +segmentations +Waymo +Apptainer +renv +alphafold +knitro +amd +lammps +slurm +comsol +matlab +mathematica +stata +squashfs +gaussian +vnc +vscode +julia +sas +xvfb +jupyter +schrodinger +preemptible +Preemptible +Lmod +modulefile +Bioinformatics +bioinformatics +srun +salloc +sinfo +squeue +sacct +scancel +ncpus +stdout +stderr +ntasks +nvidia +conda +Nextflow +venv +virtualenv +env +mpi +dplyr +sqlite +row_number +rsqlite +csv +Biologics +Epik +pKa +QSite +subnet +multiphysics +Multiphysics +Comsol +Mathematica +Simulink +Mathworks +Stata +Stata's +initio +Knitro +slurmctld +lockfile +Packrat +vllm +Syslabs +vm +Docker's +penv +line_profiler +profiler +Nsight +multiple_workers +ffcv +ddp +webpages +gpus_per_node +multinode +Keras +gpus +Horovod +MXNet +Miniforge +Preinstallation +Miniconda +bioconda +pytorch +gzipped +nyu +miniforge +nano +readonly +Qwen +APIs +SGLang +img +miniconda +tokenizer +return_tensors +cuda +Laiba +Mehnaz +pretrained +Pretrained +redownloading +Tokenizer +iPython +my_env +JBrowse +bcftools +Xeon +Tandon +Courant +wget +fb +fastq +mkdir +mv +wc +stdin +melanogaster +gzip +zcat +whoami +tempfiles +spacebar +subcolumns +chmod +VPNs +Ctrl +Hostname +Nano +subdir +new_subdir +kevyin +libcurl +dnf +Wget +homebrew +walltime +Greene +fileserver +nproc +lscpu +df +tmp +xfs +zfs +beegfs +cifs +gpfs +nfs +pvfs +subcommand +subcommands +bugfix +bioinformatic +Amdahl +amdahl +Cyberinfrastructure +DUAs +Infographic +requesters +Emeriti +onboarding +formatters +Regexes +parallelization +xyz +du +Solaris +sftp +Quickconnect +data's +scrollable +Storable +matchers +chartfield +Ceph +facl +Qualtrics +netid From 9b4dc5f0867c47822c177c54b62c72582a9876b0 Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 17:46:36 +0800 Subject: [PATCH 23/28] Update .vale.ini --- .vale.ini | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.vale.ini b/.vale.ini index 4523df8bde..ec3a21004c 100644 --- a/.vale.ini +++ b/.vale.ini @@ -7,3 +7,8 @@ mdx = md [*.{md,mdx}] BasedOnStyles = Vale, TitleCase + +Vale.Spelling = YES +Vale.Repetition = YES +Vale.Terms = NO +TitleCase.TitleCase = YES From 5fabcc69151687e3437f5dfef5b29f2b5613c10b Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 22:29:59 +0800 Subject: [PATCH 24/28] Update vale-test.yml --- .github/workflows/vale-test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/vale-test.yml b/.github/workflows/vale-test.yml index f83ee714c5..8215296592 100644 --- a/.github/workflows/vale-test.yml +++ b/.github/workflows/vale-test.yml @@ -4,6 +4,10 @@ on: pull_request: workflow_dispatch: +permissions: + contents: read + pull-requests: write + jobs: vale: name: Vale Grammar and Style Check @@ -20,3 +24,4 @@ jobs: files: | docs/ src/pages/ + reporter: github-pr-review From 9dbf9ad28008aa02057d563e6b82e3e0245dbb3c Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 23:13:23 +0800 Subject: [PATCH 25/28] Create vale-reviewdog-test.mdx --- docs/hpc/vale-reviewdog-test.mdx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 docs/hpc/vale-reviewdog-test.mdx diff --git a/docs/hpc/vale-reviewdog-test.mdx b/docs/hpc/vale-reviewdog-test.mdx new file mode 100644 index 0000000000..a27214e55e --- /dev/null +++ b/docs/hpc/vale-reviewdog-test.mdx @@ -0,0 +1,9 @@ +# vale reviewdog test + +This is is a test. + +This sentence has a mispelled word: recieve. + +:::warning +This is a warning. +::: From 2ccbdf8360d9f319207e2b67d9b4753da7565895 Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Thu, 16 Jul 2026 23:39:32 +0800 Subject: [PATCH 26/28] Delete docs/hpc/vale-test.mdx --- docs/hpc/vale-test.mdx | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 docs/hpc/vale-test.mdx diff --git a/docs/hpc/vale-test.mdx b/docs/hpc/vale-test.mdx deleted file mode 100644 index 23c96997d2..0000000000 --- a/docs/hpc/vale-test.mdx +++ /dev/null @@ -1,7 +0,0 @@ -# `rsync` and `rclone` - -This is is a test. - -:::warning -This is a warning. -::: From 70e1330acbf73fb6d77da9a27785ba4fa4fd361b Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Fri, 17 Jul 2026 09:07:05 +0800 Subject: [PATCH 27/28] Update vale-test.yml --- .github/workflows/vale-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/vale-test.yml b/.github/workflows/vale-test.yml index 8215296592..7f3dc6a1cf 100644 --- a/.github/workflows/vale-test.yml +++ b/.github/workflows/vale-test.yml @@ -24,4 +24,4 @@ jobs: files: | docs/ src/pages/ - reporter: github-pr-review + From 435d64f108f582d65fac35e2e05115c453e24e3b Mon Sep 17 00:00:00 2001 From: Amanda-dong <159391549+Amanda-dong@users.noreply.github.com> Date: Fri, 17 Jul 2026 09:12:16 +0800 Subject: [PATCH 28/28] Update vale-test.yml --- .github/workflows/vale-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/vale-test.yml b/.github/workflows/vale-test.yml index 7f3dc6a1cf..8215296592 100644 --- a/.github/workflows/vale-test.yml +++ b/.github/workflows/vale-test.yml @@ -24,4 +24,4 @@ jobs: files: | docs/ src/pages/ - + reporter: github-pr-review