Skip to content

Fix DevIndex pipeline data paths after directory refactoring #9292

@tobiu

Description

@tobiu

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*

Metadata

Metadata

Assignees

Labels

aibugSomething isn't workingbuildBuild system, scripts, and configuration

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions