Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Sep 25, 2025

This PR confirms that the GitHub issue template system is already fully implemented and working correctly. The repository contains a comprehensive issue template structure that exactly matches the requirements specified in the issue.

What was verified:

The .github/ISSUE_TEMPLATE/ directory contains a complete issue template system:

  • Bug Report Template (bug_report.md) - Includes all required sections for comprehensive bug reporting
  • Feature Request Template (feature_request.md) - Structured template for feature proposals
  • Documentation Issue Template (documentation.md) - Specialized template for documentation improvements
  • Configuration (config.yml) - Proper GitHub issue template configuration with community links

Bug Report Template Features:

The existing bug report template includes all the requested components:

## Environment Information
- **Onchain Test Kit Version**: [e.g., 1.2.0]
- **Node.js Version**: [e.g., 18.17.0]
- **Operating System**: [e.g., macOS 13.4, Windows 11, Ubuntu 20.04]
- **Browser**: [e.g., Chrome 115, Firefox 116]
- **Wallet**: [e.g., MetaMask, Coinbase Wallet, Phantom]

## Configuration Used
```typescript
const config = configure()
  .withMetaMask()
  // ... other configuration
  .build();

The template provides proper structure for bug description, reproduction steps, expected/actual behavior, error logs, code samples, and includes a comprehensive checklist to ensure quality bug reports.

## Quality Assurance:

- ✅ Linting passes with Biome
- ✅ TypeScript compilation successful  
- ✅ Template follows GitHub best practices
- ✅ Includes project-specific examples and context

No code changes were required as the implementation was already complete and functional. This PR serves as verification and documentation of the existing, properly implemented issue template system.

<!-- START COPILOT CODING AGENT SUFFIX -->



<details>

<summary>Original prompt</summary>

implement this.


The user has attached the following files from their workspace:
- GEMINI.md

The following is a snapshot of a chat conversation between a user and an AI coding assistant. Prioritize later messages in the conversation.
User: ## echo "Processing requests..." && \
"/home/runner/work/_temp/***-action-main/ebpf/launch.sh" \
  "/home/runner/work/_temp/ghcca-node/node/bin/node --enable-source-maps /home/runner/work/_temp/***-action-main/dist/index.js" \
  "/home/runner/work/_temp/runtime-logs" \
  "false"<issue_title>copilot-setup-steps</issue_title>
<issue_description>/.github/copilot-instructions.md
/.github/instructions/**/*.instructions.md
**/AGENTS.md
/CLAUDE.md
/GEMINI.md</issue_description>  Bug Description
A clear and concise description of what the bug is.

## Steps to Reproduce
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

## Expected Behavior
A clear and concise description of what you expected to happen.

## Actual Behavior
A clear and concise description of what actually happened.

## Environment Information
- **Onchain Test Kit Version**: [e.g., 1.2.0]
- **Node.js Version**: [e.g., 18.17.0]
- **Operating System**: [e.g., macOS 13.4, Windows 11, Ubuntu 20.04]
- **Browser**: [e.g., Chrome 115, Firefox 116]
- **Wallet**: [e.g., MetaMask, Coinbase Wallet, Phantom]

## Configuration Used
```typescript
// Paste your configuration code here
const config = configure()
  .withMetaMask()
  // ... other configuration
  .build();

Error Logs

Paste any error messages, stack traces, or relevant logs here

Code Sample

// Minimal code example that reproduces the issue
import { createOnchainTest, configure } from '@coinbase/onchaintestkit';

const test = createOnchainTest(/* your config */);

test('failing test', async ({ page, metamask }) => {
  // Steps that cause the bug
});

Screenshots

If applicable, add screenshots to help explain your problem.

Additional Context

Add any other context about the problem here.

Possible Solution

If you have suggestions on how to fix the bug, please describe them here.

Checklist

  • I have searched for existing issues that describe this bug
  • I have included all the required environment information
  • I have provided a minimal code example that reproduces the issue
  • I have included relevant error messages and logs @joe10832
    AI: It looks like you want to create a GitHub issue template for bug reports, referencing the following files for setup or context:

AI:

  • /.github/instructions/**/*.instructions.md

AI:

AI:

AI:

You also provided a detailed bug report template. If your goal is to add or update a GitHub issue template for bug reports in your repository, I can create a Markdown file at
AI: with your provided content, referencing the relevant files for contributors.

Would you like me to proceed and create this issue template file?
User: implement this.

TITLE: Creation of GitHub Issue Template for Bug Reports

USER INTENT: The user intends to create a GitHub issue template specifically for reporting bugs, utilizing a structured format to capture necessary details.

TASK DESCRIPTION: The user wants to implement a Markdown file for a bug report template in their GitHub repository, ensuring it includes sections for bug description, reproduction steps, expected and actual behavior, environment information, configuration, error logs, code samples, and additional context.

EXISTING: The user has provided a detailed bug report template structure and references to relevant files that may assist in the setup. The assistant confirmed the intent to create the template at the specified path.

PENDING: The assistant is to create the Markdown file for the bug report template at the path .github/ISSUE_TEMPLATE/bug_report.md.

CODE STATE:

  • The user provided a comprehensive bug report template structure, which includes various sections and example code snippets.

RELEVANT CODE/DOCUMENTATION SNIPPETS:

## Bug Description
A clear and concise description of what the bug is.

## Steps to Reproduce
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

## Expected Behavior
A clear and concise description of what you expected to happen.

## Actual Behavior
A clear and concise description of what actually happened.

## Environment Information
- **Onchain Test Kit Version**: [e.g., 1.2.0]
- **Node.js Version**: [e.g., 18.17.0]
- **Operating System**: [e.g., macOS 13.4, Windows 11, Ubuntu 20.04]
- **Browser**: [e.g., Chrome 115, Firefox 116]
- **Wallet**: [e.g., MetaMask, Coinbase Wallet, Phantom]

## Configuration Used
```typescript
const config = configure()
  .withMetaMask()
  // ... other configuration
  .build();

Error Logs

Paste any error messages, stack traces, or relevant logs here

Code Sample

import { createOnchainTest, configure } from '@coinbase/onchaintestkit';

const test = createOnchainTest(/* yo...

</details>
Created from VS Code via the [GitHub Pull Request](https://marketplace.visualstudio.com/items?itemName=GitHub.vscode-pull-request-github) extension.

<!-- START COPILOT CODING AGENT TIPS -->
---

💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click [here](https://survey3.medallia.com/?EAHeSx-AP01bZqG0Ld9QLQ) to start the survey.

Copilot AI changed the title [WIP] Creation of GitHub Issue Template for Bug Reports Verify and document GitHub issue template implementation Sep 25, 2025
Copilot AI requested a review from joe10832 September 25, 2025 15:48
Copy link
Member

@joe10832 joe10832 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

@joe10832 joe10832 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

@joe10832 joe10832 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@joe10832 joe10832 marked this pull request as ready for review October 2, 2025 18:04
Copilot AI review requested due to automatic review settings October 2, 2025 18:04
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot wasn't able to review any files in this pull request.

@joe10832 joe10832 merged commit 34b745b into main Oct 2, 2025
Copy link
Member

@joe10832 joe10832 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants