diff --git a/.github/workflows/feature-parity.yml b/.github/workflows/feature-parity.yml index 59be3621..85f93f17 100644 --- a/.github/workflows/feature-parity.yml +++ b/.github/workflows/feature-parity.yml @@ -47,7 +47,7 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number, - body: `❌ **Parity Label Removed**\n\n@${context.actor}, you do not have sufficient permissions to add the 'parity' label. Only users with write access can trigger feature parity issues.\n\nIf you believe this feature should be implemented in the Python SDK, please ask a maintainer to add the label.` + body: `❌ **Parity Label Removed**\n\n@${context.actor}, you do not have sufficient permissions to add the 'parity' label. Only users with write access can trigger feature parity issues.\n\nIf you believe this feature should be implemented in the Typescript SDK, please ask a maintainer to add the label.` }); throw new Error(`User ${context.actor} does not have write access to add parity label`); @@ -62,7 +62,7 @@ jobs: app-id: ${{ secrets.PARITY_APP_ID }} private-key: ${{ secrets.PARITY_APP_PRIVATE_KEY }} owner: browserbase - repositories: stagehand + repositories: stagehand-python - name: Create issue in Python SDK repository uses: actions/github-script@v7 @@ -104,7 +104,7 @@ jobs: const issueTitle = `[Feature Parity] ${pullRequest.title}`; const issueBody = `## Feature Parity Request - This issue was automatically created from a pull request in the TypeScript Stagehand repository that was labeled with 'parity'. + This issue was automatically created from a pull request in the Python Stagehand repository that was labeled with 'parity'. ### Original PR Details - **PR**: #${context.issue.number} - ${pullRequest.title} @@ -120,12 +120,12 @@ jobs: ${commentsSection} ### Action Required - Please review the changes in the original PR and implement equivalent functionality in the Python SDK if applicable. + Please review the changes in the original PR and implement equivalent functionality in the Typescript SDK if applicable. --- *This issue was automatically generated by the Feature Parity workflow.*`; - // Create the issue in the Python repository + // Create the issue in the Typescript repository const { data: issue } = await github.rest.issues.create({ owner: 'browserbase', repo: 'stagehand', @@ -141,5 +141,5 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number, - body: `🔄 **Feature Parity Issue Created**\n\nAn issue has been automatically created in the Python SDK repository to track parity implementation:\n${issue.html_url}` + body: `🔄 **Feature Parity Issue Created**\n\nAn issue has been automatically created in the Typescript SDK repository to track parity implementation:\n${issue.html_url}` });