Skip to content

Commit 26d5cae

Browse files
committed
fix: add missing commit step in the sync data pipeline
1 parent 7e3dd29 commit 26d5cae

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/sync_data.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,18 @@ jobs:
7878
cd ..
7979
rm -rf temp-fortSphere
8080
81+
- name: Debug Git Changes
82+
run: |
83+
git status
84+
git diff
85+
86+
- name: Commit Updated Checks
87+
run: |
88+
git config user.name "GitHub Actions"
89+
git config user.email "actions@github.com"
90+
git add -A
91+
git diff --cached --quiet || git commit -m "chore: sync with fortSphere Policies"
92+
8193
- name: Install Dependencies and update dynamic content
8294
run: |
8395
npm install

0 commit comments

Comments
 (0)