Skip to content

Commit e8fef99

Browse files
committed
Fix script path casing in GitHub Actions workflows for JSON review processing and audit
1 parent ad63e00 commit e8fef99

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/process_json_reviews.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3737
run: |
38-
python scripts/process_json_reviews.py
38+
python Scripts/process_json_reviews.py
3939
4040
- name: Commit and push processed files
4141
if: success() || failure() # Run even if previous step failed

.github/workflows/review_audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
env:
3535
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3636
run: |
37-
python scripts/audit_reviews.py
37+
python Scripts/audit_reviews.py
3838
3939
- name: Commit and push if changed
4040
run: |

0 commit comments

Comments
 (0)