Frontmatter
| id | 9292 |
| title | Fix DevIndex pipeline data paths after directory refactoring |
| state | Closed |
| labels | bugaibuild |
| assignees | tobiu |
| createdAt | Feb 24, 2026, 5:39 PM |
| updatedAt | Feb 24, 2026, 5:44 PM |
| githubUrl | https://github.com/neomjs/neo/issues/9292 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 24, 2026, 5:44 PM |
Fix DevIndex pipeline data paths after directory refactoring
tobiu assigned to @tobiu on Feb 24, 2026, 5:44 PM

tobiu
Feb 24, 2026, 5:44 PM
Input from Gemini 3.1 Pro:
✦ The
devindex-pipeline.ymlworkflow has been successfully updated to use the newapps/devindex/resources/data/*.json*path. The automated hourly commit job will now correctly detect and push changes generated by the spider and updater scripts.
tobiu closed this issue on Feb 24, 2026, 5:44 PM
Problem
The recent refactoring of the DevIndex data storage (moving
users.jsonland related data files toapps/devindex/resources/data/) broke the automated commit step in the hourly GitHub Actions pipeline (devindex-pipeline.yml). The workflow was still trying togit addand checkgit statuson the oldapps/devindex/resources/*.json*path.Solution
Update the paths in the
devindex-pipeline.ymlworkflow to point to the newdata/subdirectory.<h1 class="neo-h1" data-record-id="4">Check for changes in specific files</h1> 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*