Skip to content

Commit

Permalink
chore(issue): added a issue manager
Browse files Browse the repository at this point in the history
  • Loading branch information
DarrellRichards committed Jun 5, 2024
1 parent 58e54ff commit ab9f568
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 8 deletions.
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG] PR Magic bug report"
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots Of Error**
If applicable, add screenshots to help explain your problem.

**Versions**
- Tagged Release Version

**Additional context**
Add any other context about the problem here.
16 changes: 8 additions & 8 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
name: 'Github PR Magic'
description: 'Automatically reviewing and approving PRs'
name: 'Pull Request Magic'
description: 'Pull Request Magic enables you to streamline your workflow by automating Pull Request Reviews, crafting Pull Request Descriptions, and even auto-approving Pull Requests—all seamlessly integrated with Github Actions. '
author: 'Darrell Richards'
inputs:
github_token:
description: 'Github token'
description: 'Github Token for PR approval and code review.'
required: true
excluded_files:
description: 'Files to exclude from review'
description: 'A comma separated list of files to exclude from code review.'
required: false
default: "node_modules, package-lock.json, yarn.lock"
openai_api_key:
description: 'OpenAI API key'
description: 'OpenAI API Key for code review and approval.'
required: true
openai_model:
description: 'OpenAI model to use (e.g., gpt-4, davinci)'
description: 'OpenAI model to use (e.g., gpt-4, davinci).'
required: false
default: 'gpt-4'
review_code:
description: 'Review code'
description: 'Provides code review as a comment line by line.'
required: false
default: true
generate_summary:
description: 'Generates Pull Request summary based on git diff and code changes'
required: false
default: false
overall_code_review:
description: 'Overall code review as a comment'
description: 'Provides overall code review as a comment (Overview, Updates and Enhancements, Recommendations).'
required: false
default: false
runs:
Expand Down

0 comments on commit ab9f568

Please sign in to comment.