Fix a config merge issue #64
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Provide Pull Request Feedback to CI Bot | |
| on: | |
| pull_request: | |
| types: [closed] | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| actions: read | |
| jobs: | |
| create-pr-feedback: | |
| runs-on: ubuntu-latest | |
| name: Create PR Feedback | |
| steps: | |
| - name: Connect to Tailscale | |
| uses: tailscale/github-action@v4 | |
| with: | |
| oauth-client-id: ${{ secrets.CI_BOT_TS_OAUTH_CLIENT_ID }} | |
| oauth-secret: ${{ secrets.CI_BOT_TS_OAUTH_CLIENT_SECRET }} | |
| tags: tag:ci | |
| - name: Send PR Feedback | |
| # TODO: currently pinned to miniswe-agent branch; switch back to main when ready. | |
| uses: tensorzero/experimental-ci-bot/create-pr-feedback@main | |
| with: | |
| tensorzero-base-url: http://ci-bot-gateway:3000 | |
| # TODO: Switch to tensorzero_github_ci_bot_agent_pr_merged for episode-level feedback when agent creates PRs | |
| tensorzero-pr-merged-metric-name: ci_fix_pr_merged_agent | |
| clickhouse-url: ${{ secrets.CI_BOT_CLICKHOUSE_URL }} | |
| clickhouse-table: GitHubBotPullRequestToInferenceMap |