Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions templates/codereview/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pipeline:
working_directory: /harness
show_diff: "false"
env:
ANTHROPIC_API_KEY: <+inputs.llmConnector.token>
ANTHROPIC_API_KEY: <+inputs.anthropicKey>
- name: post_comments
run:
container:
Expand All @@ -44,8 +44,9 @@ pipeline:
os: linux
arch: arm64
inputs:
llmConnector:
type: connector
anthropicKey:
type: secret
default: account.autofix_anthropic_api_key
harnessKey:
type: secret
default: account.harness_api_key
Expand Down
7 changes: 4 additions & 3 deletions templates/ffcleanup/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pipeline:
working_directory: /harness
show_diff: "false"
env:
ANTHROPIC_API_KEY: <+inputs.llmConnector.token>
ANTHROPIC_API_KEY: <+inputs.anthropicKey>
- name: createNetrc
run:
shell: sh
Expand Down Expand Up @@ -180,8 +180,9 @@ pipeline:

EOF
inputs:
llmConnector:
type: connector
anthropicKey:
type: secret
default: ffcleanup_anthropic_apikey
harnessApiKey:
type: secret
default: ffcleanup_harness_apikey
Expand Down
7 changes: 4 additions & 3 deletions templates/manifest-remediator/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pipeline:
harness_org_id: <+inputs.harnessOrgId>
harness_account_id: <+inputs.harnessAccountId>
env:
ANTHROPIC_API_KEY: <+inputs.llmConnector.token>
ANTHROPIC_API_KEY: <+inputs.anthropicKey>
- name: Output
run:
script: |-
Expand All @@ -39,8 +39,9 @@ pipeline:
os: linux
arch: arm64
inputs:
llmConnector:
type: connector
anthropicKey:
type: secret
default: autofix_anthropic_api_key
harnessKey:
type: secret
default: harness_api_key
Expand Down
7 changes: 4 additions & 3 deletions templates/onboarding/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pipeline:
container:
image: colinharness/onboarding-agent:1.0.35
env:
ANTHROPIC_API_KEY: <+inputs.llmConnector.token>
ANTHROPIC_API_KEY: <+inputs.anthropicKey>
HARNESS_API_KEY: <+inputs.harnessKey>
REPO_NAME: <+inputs.repoName>
REPO_NAMESPACE: <+inputs.repoNamespace>
Expand All @@ -18,8 +18,9 @@ pipeline:
os: linux
arch: amd64
inputs:
llmConnector:
type: connector
anthropicKey:
type: secret
default: account.onboarding_anthropic_api_key
description: Anthropic API key for Claude AI
harnessKey:
type: secret
Expand Down