Skip to content

Commit 94c1082

Browse files
committed
fix issue search
1 parent ebc08ba commit 94c1082

3 files changed

Lines changed: 39 additions & 6 deletions

File tree

workflows/daily-perf-improver.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,18 @@ tools:
3939
WebSearch:
4040
# Configure bash build commands here, or in .github/workflows/agentics/daily-perf-improver.config.md
4141
#Bash: [":*"]
42-
Bash: ["gh pr create:*", "git commit:*", "git push:*", "git checkout:*", "git branch:*", "git add:*", "gh auth status", "gh repo view", "gh issue comment:*"]
42+
Bash:
43+
- "gh pr create:*"
44+
- "git commit:*"
45+
- "git push:*"
46+
- "git checkout:*"
47+
- "git branch:*"
48+
- "git add:*"
49+
- "gh auth status"
50+
- "gh repo view"
51+
- "gh issue comment:*"
52+
- "gh issue list:*"
53+
- "gh pr list:*"
4354

4455
steps:
4556
- name: Checkout repository
@@ -69,7 +80,7 @@ Your name is ${{ github.workflow }}. Your job is to act as an agentic coder for
6980

7081
1. Performance research (if not done before).
7182

72-
1a. Check if an open issue with title "${{ github.workflow }}: Research and Plan" exists. If it does, read the issue and its comments, paying particular attention to comments from repository maintainers, then continue to step 2. If not, follow the steps below to create it:
83+
1a. Check if an open issue with title "${{ github.workflow }}: Research and Plan" exists using `gh issue list --search 'is:open in:title \"Research and Plan\"'`. If it does, read the issue and its comments, paying particular attention to comments from repository maintainers, then continue to step 2. If the issue doesn't exist, follow the steps below to create it:
7384

7485
1b. Do some deep research into performance matters in this repo.
7586
- How is performance testing is done in the repo?

workflows/daily-roadmap-progress.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,18 @@ tools:
4545
WebSearch:
4646
# Configure bash build commands here, or in .github/workflows/agentics/daily-roadmap-progress.config.md
4747
#Bash: [":*"]
48-
Bash: ["gh pr create:*", "git commit:*", "git push:*", "git checkout:*", "git branch:*", "git add:*", "gh auth status", "gh repo view", "gh issue comment:*"]
48+
Bash:
49+
- "gh pr create:*"
50+
- "git commit:*"
51+
- "git push:*"
52+
- "git checkout:*"
53+
- "git branch:*"
54+
- "git add:*"
55+
- "gh auth status"
56+
- "gh repo view"
57+
- "gh issue comment:*"
58+
- "gh issue list:*"
59+
- "gh pr list:*"
4960

5061
steps:
5162
- name: Checkout repository
@@ -75,7 +86,7 @@ Your name is ${{ github.workflow }}. Your job is to act as an agentic coder for
7586

7687
1. Roadmap research (if not done before).
7788

78-
1a. Check carefully if an open issue with title "${{ github.workflow }}: Research, Roadmap and Plan" exists. If it does, read the issue and its comments, paying particular attention to comments from repository maintainers, then continue to step 2. If it doesn't exist, follow the steps below to create it:
89+
1a. Check carefully if an open issue with title "${{ github.workflow }}: Research, Roadmap and Plan" exists using `gh issue list --search 'is:open in:title \"Research, Roadmap and Plan\"'`. If it does, read the issue and its comments, paying particular attention to comments from repository maintainers, then continue to step 2. If the issue doesn't exist, follow the steps below to create it:
7990

8091
1b. Do some deep research into the feature reoadmap in this repo.
8192
- Read any existing documentation, issues, pull requests, project files, dev guides and so on in the repository that do similar things.

workflows/daily-test-improver.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,18 @@ tools:
4040
WebSearch:
4141
# Configure bash build commands here, or in .github/workflows/agentics/daily-test-improver.config.md
4242
#Bash: [":*"]
43-
Bash: ["gh pr create:*", "git commit:*", "git push:*", "git checkout:*", "git branch:*", "git add:*", "gh auth status", "gh repo view", "gh issue comment:*"]
43+
Bash:
44+
- "gh pr create:*"
45+
- "git commit:*"
46+
- "git push:*"
47+
- "git checkout:*"
48+
- "git branch:*"
49+
- "git add:*"
50+
- "gh auth status"
51+
- "gh repo view"
52+
- "gh issue comment:*"
53+
- "gh issue list:*"
54+
- "gh pr list:*"
4455

4556
steps:
4657
- name: Checkout repository
@@ -70,7 +81,7 @@ Your name is ${{ github.workflow }}. Your job is to act as an agentic coder for
7081

7182
1. Testing research (if not done before).
7283

73-
1a. Check if an open issue with title "${{ github.workflow }}: Research and Plan" exists. If it does, read the issue and its comments, paying particular attention to comments from repository maintainers, then continue to step 2. If not, follow the steps below to create it:
84+
1a. Check if an open issue with title "${{ github.workflow }}: Research and Plan" exists using `gh issue list --search 'is:open in:title \"Research and Plan\"'`. If it does, read the issue and its comments, paying particular attention to comments from repository maintainers, then continue to step 2. If the issue doesn't exist, follow the steps below to create it:
7485

7586
1b. Research the repository to understand its purpose, functionality, and technology stack. Look at the README.md, project documentation, code files, and any other relevant information.
7687

0 commit comments

Comments
 (0)