Skip to content

Commit 85ce7b7

Browse files
committed
chore: lint + format
1 parent 0196189 commit 85ce7b7

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

.github/workflows/mycoder-issue-triage.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@ jobs:
3535
- run: |
3636
echo "${{ secrets.GH_PAT }}" | gh auth login --with-token
3737
gh auth status
38-
- run: mycoder --upgradeCheck false --githubMode true --userPrompt false "You are an issue triage assistant. Please analyze GitHub issue ${{ github.event.issue.number }} according to the guidelines in .mycoder/ISSUE_TRIAGE.md. Categorize the issue type (Bug, Feature, Request), suggest appropriate labels, check for duplicates, and provide a helpful initial assessment. If the issue is too vague, ask for more information. For bugs, try to identify potential causes. For feature requests, suggest implementation approaches. For questions, try to provide answers based on the codebase and documentation."
38+
- run: |
39+
mycoder --upgradeCheck false --githubMode true --userPrompt false "You are an issue triage assistant. Please analyze GitHub issue ${{ github.event.issue.number }} according to the guidelines in .mycoder/ISSUE_TRIAGE.md"

.github/workflows/mycoder-pr-review.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,5 @@ jobs:
4545
PR_COMMENTS=$(gh pr view ${{ github.event.pull_request.number }} --json comments --jq '.comments')
4646
echo "reviews=$PR_REVIEWS" >> $GITHUB_OUTPUT
4747
echo "comments=$PR_COMMENTS" >> $GITHUB_OUTPUT
48-
- run: mycoder --upgradeCheck false --githubMode true --userPrompt false "Please review PR ${{ github.event.pull_request.number }} according to the guidelines in .mycoder/PR_REVIEW.md. This PR is related to issue ${{ github.event.pull_request.head.ref }} and has the title '${{ github.event.pull_request.title }}'. Review the PR changes, check if it addresses the requirements in the linked issue, and provide constructive feedback. Consider previous review comments and discussions to avoid repetition and help move towards resolution. Previous reviews and comments: ${{ steps.get-reviews.outputs.reviews }} ${{ steps.get-reviews.outputs.comments }}"
48+
- run: |
49+
mycoder --upgradeCheck false --githubMode true --userPrompt false "Please review PR ${{ github.event.pull_request.number }} according to the guidelines in .mycoder/PR_REVIEW.md. Previous reviews and comments: ${{ steps.get-reviews.outputs.reviews }} ${{ steps.get-reviews.outputs.comments }}"

.mycoder/ISSUE_TRIAGE.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
When triaging a new issue, categorize it by type and apply appropriate labels:
66

77
### Issue Types
8+
89
- **Bug**: An error, flaw, or unexpected behavior in the code
910
- **Feature**: A request for new functionality or capability
1011
- **Request**: A general request that doesn't fit into bug or feature categories
1112

1213
### Issue Labels
14+
1315
- **bug**: For issues reporting bugs or unexpected behavior
1416
- **documentation**: For issues related to documentation improvements
1517
- **question**: For issues asking questions about usage or implementation
@@ -20,16 +22,19 @@ When triaging a new issue, categorize it by type and apply appropriate labels:
2022
## Triage Process
2123

2224
### Step 1: Initial Assessment
25+
2326
1. Read the issue description thoroughly
2427
2. Determine if the issue provides sufficient information
2528
- If too vague, ask for more details (reproduction steps, expected vs. actual behavior)
2629
- Check for screenshots, error messages, or logs if applicable
2730

2831
### Step 2: Categorization
32+
2933
1. Assign the appropriate issue type (Bug, Feature, Request)
3034
2. Apply relevant labels based on the issue content
3135

3236
### Step 3: Duplication Check
37+
3338
1. Search for similar existing issues
3439
2. If a duplicate is found:
3540
- Apply the "duplicate" label
@@ -39,6 +44,7 @@ When triaging a new issue, categorize it by type and apply appropriate labels:
3944
### Step 4: Issue Investigation
4045

4146
#### For Bug Reports:
47+
4248
1. Attempt to reproduce the issue if possible
4349
2. Investigate the codebase to identify potential causes
4450
3. Provide initial feedback on:
@@ -48,6 +54,7 @@ When triaging a new issue, categorize it by type and apply appropriate labels:
4854
- Estimation of complexity
4955

5056
#### For Feature Requests:
57+
5158
1. Evaluate if the request aligns with the project's goals
5259
2. Investigate feasibility and implementation approaches
5360
3. Provide feedback on:
@@ -57,11 +64,13 @@ When triaging a new issue, categorize it by type and apply appropriate labels:
5764
- Estimation of work required
5865

5966
#### For Questions:
67+
6068
1. Research the code and documentation to find answers
6169
2. Provide clear and helpful responses
6270
3. Suggest documentation improvements if the question reveals gaps
6371

6472
### Step 5: Follow-up
73+
6574
1. Provide a constructive and helpful comment
6675
2. Ask clarifying questions if needed
6776
3. Suggest next steps or potential contributors
@@ -81,4 +90,4 @@ When triaging a new issue, categorize it by type and apply appropriate labels:
8190
- For security vulnerabilities, suggest proper disclosure channels
8291
- For major feature requests, suggest discussion in appropriate forums first
8392
- For issues affecting performance, request benchmark data if not provided
84-
- For platform-specific issues, request environment details
93+
- For platform-specific issues, request environment details

.mycoder/PR_REVIEW.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ When reviewing updates to a PR:
7070
- Avoid repeating previous feedback unless clarification is needed
7171
- Help move the PR towards completion rather than finding new issues
7272

73-
Remember that the goal is to help improve the code while maintaining a positive and constructive environment for all contributors.
73+
Remember that the goal is to help improve the code while maintaining a positive and constructive environment for all contributors.

0 commit comments

Comments
 (0)