Skip to content
Merged
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
6 changes: 0 additions & 6 deletions templates/autofix/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@ pipeline:
connector: "<+inputs.gitConnector != null ? inputs.gitConnector.id : ''>"
stages:
- name: autofix
id: stage1
steps:
- name: remediation_agent
id: step1
run:
container:
image: anewdocker25/mydockerhub:remediation-agent
Expand All @@ -25,7 +23,6 @@ pipeline:
env:
ANTHROPIC_API_KEY: <+inputs.llmConnector.token>
- name: coding_agent
id: step2
run:
container:
image: anewdocker25/mydockerhub:coding-agent
Expand All @@ -38,15 +35,13 @@ pipeline:
env:
ANTHROPIC_API_KEY: <+inputs.llmConnector.token>
- name: show_git_diff
id: step3
run:
shell: bash
script: |-
rm -r 5c5b7e75_813d_40ec_9836_40b5bcf750e6_autofix
git add -A
git diff --cached
- name: fix_env_variables
id: step4
run:
shell: bash
script: |-
Expand Down Expand Up @@ -106,7 +101,6 @@ pipeline:
SCM_TOKEN: <+inputs.gitConnector.token>

- name: push_and_create_pr
id: step5
run:
container:
image: himanshu6956/create-pr-plugin:latest
Expand Down