Possible two bugs here:
- It appears to have gotten itself into a loop, but then instead of telling me anything - it just stops working.
● Ls(.github/workflows)
⎿ 24 lines, 524 chars
README.md
claude.yml
code-review.yml
codecov-upload.yml
deploy-ansible.yml
deploy-app-dev.yml
deploy-app-production.yml
deploy-firebase-backend-dev.yml
deploy-firebase-backend-production.yml
deploy-portal-dev.yml
... 14 more lines
● I see there is a codecov-upload.yml file. Let me read it to understand the current configuration:
● Read(codecov-upload.yml)
⎿ Error: File does not exist: codecov-upload.yml
● Let me check if the workflow files are in a .github/workflows directory:
● Ls(.github)
Effectively, it tries to find the workflow file which is the in the .github/workflows directory, then tries to read it, but appears to leave out the path, then goes back to finding it again, etc....it eventually gives up, but doesn't tell me anything.
(leaving out the path is bug 2)
This happens on both 0.1.5 and 0.1.10.
My prompt was:
I'm having trouble with a GH actions workflow - the codecov-upload workflow. I would like it to run AFTER the test-app workflows have finished on any PR which trigger those workflows.
should not trigger on PRs which do not trigger it. It should also trigger on merges to main regardless, but only the test-app workflow
Possible two bugs here:
Effectively, it tries to find the workflow file which is the in the
.github/workflowsdirectory, then tries to read it, but appears to leave out the path, then goes back to finding it again, etc....it eventually gives up, but doesn't tell me anything.(leaving out the path is bug 2)
This happens on both 0.1.5 and 0.1.10.
My prompt was: