Skip to content

[From PR #1036] Fix hardcoded developer paths in conformance-batch workflow #1037

@claude

Description

@claude

Context

Raised during review of PR #1036 (conformance batch: GAP-S09/S22/J14/S136/S74).

Problem

.claude/workflows/conformance-batch.js lines 14–15 contain hardcoded developer-local paths:

const REPO = '/Users/andreasronge/projects/ptc_runner'
const BB = REPO + '/_build/tools/bb'

These paths will not work on any other developer's machine or in CI.

Suggested Fix

Derive paths dynamically, e.g.:

const REPO = process.cwd()
const BB = REPO + '/_build/tools/bb'

Or read from an environment variable with a sensible fallback.

Priority

Low — this is a developer-only workflow script, not production code.

Metadata

Metadata

Assignees

No one assigned

    Labels

    batch-pendingIssue included in an open batch-fix PRfrom-pr-reviewIssue created from PR review feedbackquick-fixTrivial fix, batched by batch-fix workflow

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions