LearnNewsExamplesServices
Frontmatter
id9292
titleFix DevIndex pipeline data paths after directory refactoring
stateClosed
labels
bugaibuild
assigneestobiu
createdAtFeb 24, 2026, 5:39 PM
updatedAtFeb 24, 2026, 5:44 PM
githubUrlhttps://github.com/neomjs/neo/issues/9292
authortobiu
commentsCount1
parentIssuenull
subIssues[]
subIssuesCompleted0
subIssuesTotal0
blockedBy[]
blocking[]
closedAtFeb 24, 2026, 5:44 PM

Fix DevIndex pipeline data paths after directory refactoring

Closed v12.0.0 bugaibuild
tobiu
tobiu commented on Feb 24, 2026, 5:39 PM

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.

<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*
tobiu added the bug label on Feb 24, 2026, 5:39 PM
tobiu added the ai label on Feb 24, 2026, 5:39 PM
tobiu added the build label on Feb 24, 2026, 5:39 PM
tobiu referenced in commit 03390b4 - "build: Fix DevIndex pipeline data paths after directory refactoring (#9292)" on Feb 24, 2026, 5:42 PM
tobiu assigned to @tobiu on Feb 24, 2026, 5:44 PM
tobiu
tobiu Feb 24, 2026, 5:44 PM

Input from Gemini 3.1 Pro:

✦ The devindex-pipeline.yml workflow has been successfully updated to use the new apps/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