-
-
Notifications
You must be signed in to change notification settings - Fork 202
Fix DevIndex pipeline data paths after directory refactoring #9292
Copy link
Copy link
Closed
Labels
aibugSomething isn't workingSomething isn't workingbuildBuild system, scripts, and configurationBuild system, scripts, and configuration
Description
Problem
The recent refactoring of the DevIndex data storage (moving users.jsonl and related data files to apps/devindex/resources/data/) broke the automated commit step in the hourly GitHub Actions pipeline (devindex-pipeline.yml). The workflow was still trying to git add and check git status on the old apps/devindex/resources/*.json* path.
Solution
Update the paths in the devindex-pipeline.yml workflow to point to the new data/ subdirectory.
# Check for changes in specific files
if [[ -n $(git status -s apps/devindex/resources/data/*.json*) ]]; then
echo "Changes detected in data files."
# Stage the files
git add apps/devindex/resources/data/*.json*Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
aibugSomething isn't workingSomething isn't workingbuildBuild system, scripts, and configurationBuild system, scripts, and configuration