{"id":40380283,"url":"https://github.com/dsp-testing/test-exclude-paths-all-ecosystems","last_synced_at":"2026-01-20T12:01:59.725Z","repository":{"id":313139371,"uuid":"1050185043","full_name":"dsp-testing/test-exclude-paths-all-ecosystems","owner":"dsp-testing","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-14T05:03:40.000Z","size":44,"stargazers_count":0,"open_issues_count":17,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-14T07:04:08.375Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dsp-testing.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-04T04:31:04.000Z","updated_at":"2025-09-14T05:02:54.000Z","dependencies_parsed_at":"2025-09-04T06:28:20.098Z","dependency_job_id":"268bddae-3541-4f50-8ffa-4cae4feabf21","html_url":"https://github.com/dsp-testing/test-exclude-paths-all-ecosystems","commit_stats":null,"previous_names":["dsp-testing/test-exclude-paths-all-ecosystems"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dsp-testing/test-exclude-paths-all-ecosystems","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsp-testing%2Ftest-exclude-paths-all-ecosystems","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsp-testing%2Ftest-exclude-paths-all-ecosystems/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsp-testing%2Ftest-exclude-paths-all-ecosystems/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsp-testing%2Ftest-exclude-paths-all-ecosystems/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dsp-testing","download_url":"https://codeload.github.com/dsp-testing/test-exclude-paths-all-ecosystems/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsp-testing%2Ftest-exclude-paths-all-ecosystems/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28603297,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T10:46:13.255Z","status":"ssl_error","status_checked_at":"2026-01-20T10:42:51.865Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-20T12:01:59.601Z","updated_at":"2026-01-20T12:01:59.690Z","avatar_url":"https://github.com/dsp-testing.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dependabot Exclude Paths Testing Repository\n\nThis repository is designed to test Dependabot's `exclude-paths` functionality across different package ecosystems.\n\n## Repository Structure\n\n```\n├── bundler/\n│   ├── include-me/               # These files SHOULD be processed by Dependabot\n│   │   ├── Gemfile\n│   │   └── Gemfile.lock\n│   └── exclude-me/               # These files should NOT be processed (excluded)\n│       ├── Gemfile\n│       └── Gemfile.lock\n├── cargo/\n│   ├── Cargo.toml                # Workspace configuration\n│   ├── include-me/               # These files SHOULD be processed by Dependabot\n│   │   ├── Cargo.toml\n│   │   └── Cargo.lock\n│   └── exclude-me/               # These files should NOT be processed (excluded)\n│       ├── Cargo.toml\n│       └── Cargo.lock\n├── pnpm/\n│   ├── package.json              # Root workspace package.json with workspaces\n│   ├── pnpm-workspace.yaml       # PNPM workspace configuration\n│   ├── .npmrc                    # PNPM configuration\n│   ├── include-me/               # These files SHOULD be processed by Dependabot\n│   │   └── package.json          # React app dependencies\n│   └── exclude-me/               # These files should NOT be processed (excluded)\n│       └── package.json          # Node.js API dependencies\n├── bun/\n│   ├── package.json              # Root workspace package.json with workspaces\n│   ├── bunfig.toml               # Bun configuration\n│   ├── include-me/               # These files SHOULD be processed by Dependabot\n│   │   └── package.json          # Bun web app dependencies (Hono, Drizzle)\n│   └── exclude-me/               # These files should NOT be processed (excluded)\n│       └── package.json          # Bun CLI tool dependencies\n└── .github/\n    └── dependabot.yml            # Dependabot configuration with exclude-paths\n```\n\n## Test Scenarios\n\n### Bundler Ecosystem\n- **Include**: `bundler/include-me/` - Contains a Rails application with various gems\n- **Exclude**: `bundler/exclude-me/` - Contains a Sinatra application (should be ignored)\n\n### Cargo Ecosystem  \n- **Include**: `cargo/include-me/` - Contains a web server project with various dependencies\n- **Exclude**: `cargo/exclude-me/` - Contains a CLI tool project (should be ignored)\n\n### PNPM Ecosystem\n- **Root**: `pnpm/package.json` - Workspace root with dev dependencies (should be processed)\n- **Include**: `pnpm/include-me/` - Contains a React application with UI dependencies\n- **Exclude**: `pnpm/exclude-me/` - Contains a Node.js API server (should be ignored)\n\n### Bun Ecosystem\n- **Root**: `bun/package.json` - Workspace root with dev dependencies (should be processed)\n- **Include**: `bun/include-me/` - Contains a Bun web app with Hono framework and Drizzle ORM\n- **Exclude**: `bun/exclude-me/` - Contains a Bun CLI tool (should be ignored)\n\n## Expected Behavior\n\nWhen Dependabot runs, it should:\n\n1. ✅ Process and create PRs for dependencies in:\n   - `bundler/include-me/Gemfile`\n   - `cargo/include-me/Cargo.toml`\n   - `pnpm/package.json` (root level)\n   - `pnpm/include-me/package.json`\n   - `bun/package.json` (root level)\n   - `bun/include-me/package.json`\n\n2. ❌ Ignore dependencies in:\n   - `bundler/exclude-me/Gemfile` (excluded by path pattern)\n   - `cargo/exclude-me/Cargo.toml` (excluded by path pattern)\n   - `pnpm/exclude-me/package.json` (excluded by path pattern)\n   - `bun/exclude-me/package.json` (excluded by path pattern)\n   - `bundler/exclude-me/Gemfile` (excluded by path pattern)\n   - `cargo/exclude-me/Cargo.toml` (excluded by path pattern)\n   - `pnpm/exclude-me/package.json` (excluded by path pattern)\n\n## Configuration Details\n\nThe `.github/dependabot.yml` uses:\n- `exclude-paths: [\"exclude-me/**\"]` for the bundler ecosystem\n- `exclude-paths: [\"exclude-me/**\"]` for the cargo ecosystem  \n- `exclude-paths: [\"exclude-me/**\"]` for the npm/pnpm ecosystem\n\nThis ensures that only the `include-me` folders are processed for dependency updates.\n\n## PNPM Workspace Features\n\nThe PNPM setup includes:\n- **Workspace configuration**: `pnpm-workspace.yaml` defines workspace packages\n- **Root package.json**: Contains shared dev dependencies and workspace scripts\n- **PNPM configuration**: `.npmrc` with PNPM-specific settings\n- **Package isolation**: Each workspace package has its own dependencies\n\n## Testing\n\nTo verify the exclude-paths functionality:\n\n1. Monitor Dependabot PRs after pushing this configuration\n2. Check that PRs are only created for dependencies in the `include-me` folders\n3. Verify that no PRs are created for dependencies in the `exclude-me` folders\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsp-testing%2Ftest-exclude-paths-all-ecosystems","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdsp-testing%2Ftest-exclude-paths-all-ecosystems","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsp-testing%2Ftest-exclude-paths-all-ecosystems/lists"}