From 339a2efc16004bae04b1e3b170599fe1105af370 Mon Sep 17 00:00:00 2001
From: Kelvin Rodriguez <krodriguez@usgs.gov>
Date: Thu, 7 Dec 2023 12:10:14 -0700
Subject: [PATCH] Fixing Grammar Check (#4)

* Testing Grammar Check

* Typo lmao

* Minor change to trigger grammar check
---
 .github/workflows/ci_testing.yml                            | 5 +++++
 docs/getting-started/using-isis-first-steps/adding-spice.md | 1 +
 2 files changed, 6 insertions(+)

diff --git a/.github/workflows/ci_testing.yml b/.github/workflows/ci_testing.yml
index 0cd0ae5..100049b 100644
--- a/.github/workflows/ci_testing.yml
+++ b/.github/workflows/ci_testing.yml
@@ -57,6 +57,11 @@ jobs:
           codespell site/
       - name: Grammar Check
         run: |
+          git remote add origin https://github.com/DOI-USGS/asc-public-docs.git 
+          git fetch origin main
+          # List the files that changed 
+          git diff --name-only origin/main
+          # Grammar check only those files
           git diff --name-only origin/main | grep -e .md -e .MD | sed 's/^/"/;s/$/"/' | xargs -t -L1 gramma check -p || true
 
   Link-Check:
diff --git a/docs/getting-started/using-isis-first-steps/adding-spice.md b/docs/getting-started/using-isis-first-steps/adding-spice.md
index f7b0e73..78e74d1 100644
--- a/docs/getting-started/using-isis-first-steps/adding-spice.md
+++ b/docs/getting-started/using-isis-first-steps/adding-spice.md
@@ -40,3 +40,4 @@ applications you will need to use to perform this procedure:
 
   - [**spiceinit**](https://isis.astrogeology.usgs.gov/Application/presentation/Tabbed/spiceinit/spiceinit.html)
     : adds SPICE information to the input cube
+
-- 
GitLab