forked from nomic-ai/gpt4all
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* better issue templates, forcing issue template * close issues workflow * closeissues workflow change
- Loading branch information
Showing
8 changed files
with
165 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: "\U0001F41B Bug Report" | ||
description: Submit a bug report to help us improve GPT4All | ||
labels: ["02 Bug Report"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
Thank you for taking the time to file a bug report. Before creating a new | ||
issue, please make sure to take a few moments to check the issue tracker | ||
for existing issues about the bug. | ||
- type: textarea | ||
id: system-info | ||
attributes: | ||
label: System Info | ||
description: Please share your system info with us. | ||
placeholder: GPT4All version, platform, python version, etc... | ||
validations: | ||
required: true | ||
|
||
- type: checkboxes | ||
id: information-scripts-examples | ||
attributes: | ||
label: Information | ||
description: "The problem arises when using:" | ||
options: | ||
- label: "The official example notebooks/scripts" | ||
- label: "My own modified scripts" | ||
|
||
- type: checkboxes | ||
id: related-components | ||
attributes: | ||
label: Related Components | ||
description: "Select the components related to the issue (if applicable):" | ||
options: | ||
- label: "backend" | ||
- label: "bindings" | ||
- label: "python-bindings" | ||
- label: "chat-ui" | ||
- label: "models" | ||
- label: "circleci" | ||
- label: "docker" | ||
- label: "api" | ||
|
||
- type: textarea | ||
id: reproduction | ||
validations: | ||
required: true | ||
attributes: | ||
label: Reproduction | ||
description: | | ||
Please provide a [code sample](https://stackoverflow.com/help/minimal-reproducible-example) that reproduces the problem you ran into. It can be a Colab link or just a code snippet. | ||
If you have code snippets, error messages, stack traces please provide them here as well. | ||
Important! Use code tags to correctly format your code. See https://help.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks#syntax-highlighting | ||
Avoid screenshots when possible, as they are hard to read and (more importantly) don't allow others to copy-and-paste your code. | ||
placeholder: | | ||
Steps to reproduce the behavior: | ||
1. | ||
2. | ||
3. | ||
- type: textarea | ||
id: expected-behavior | ||
validations: | ||
required: true | ||
attributes: | ||
label: Expected behavior | ||
description: "A clear and concise description of what you would expect to happen." |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
blank_issues_enabled: false | ||
version: 2.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Documentation | ||
description: Report an issue related to the GPT4All documentation. | ||
title: "DOC: <Please write a comprehensive title after the 'DOC: ' prefix>" | ||
labels: [03 - Documentation] | ||
|
||
body: | ||
- type: textarea | ||
attributes: | ||
label: "Issue with current documentation:" | ||
description: > | ||
Please make sure to leave a reference to the document/code you're | ||
referring to. | ||
- type: textarea | ||
attributes: | ||
label: "Idea or request for content:" | ||
description: > | ||
Please describe as clearly as possible what topics you think are missing | ||
from the current documentation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: "\U0001F680 Feature Request" | ||
description: Submit a proposal/request for a new GPT4All feature | ||
labels: ["02 Feature Request"] | ||
body: | ||
- type: textarea | ||
id: feature-request | ||
validations: | ||
required: true | ||
attributes: | ||
label: Feature request | ||
description: | | ||
A clear and concise description of the feature proposal. Please provide links to any relevant GitHub repos, papers, or other resources if relevant. | ||
- type: textarea | ||
id: motivation | ||
validations: | ||
required: true | ||
attributes: | ||
label: Motivation | ||
description: | | ||
Please outline the motivation for the proposal. Is your feature request related to a problem? e.g., I'm always frustrated when [...]. If this is related to another GitHub issue, please link here too. | ||
- type: textarea | ||
id: contribution | ||
validations: | ||
required: true | ||
attributes: | ||
label: Your contribution | ||
description: | | ||
Is there any way that you could help, e.g. by submitting a PR? Make sure to read the CONTRIBUTING.MD [readme](https://github.com/nomic-ai/gpt4all/blob/main/CONTRIBUTING.md) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Other Issue | ||
description: Raise an issue that wouldn't be covered by the other templates. | ||
title: "Issue: <Please write a comprehensive title after the 'Issue: ' prefix>" | ||
labels: [04 - Other] | ||
|
||
body: | ||
- type: textarea | ||
attributes: | ||
label: "Issue you'd like to raise." | ||
description: > | ||
Please describe the issue you'd like to raise as clearly as possible. | ||
Make sure to include any relevant links or references. | ||
- type: textarea | ||
attributes: | ||
label: "Suggestion:" | ||
description: > | ||
Please outline a suggestion to improve the issue here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# This workflow will close issues that do not have labels or additional comments. | ||
# Trigger manually. | ||
|
||
name: "Close Issues" | ||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
close_issues: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Close issues without label or comment | ||
uses: actions/github-script@v3 | ||
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
script: | | ||
const repo = context.repo; | ||
const issues = await github.issues.listForRepo(repo); | ||
for (let { number } of issues.data) { | ||
const issueData = await github.issues.get({...repo, issue_number: number}); | ||
const comments = await github.issues.listComments({...repo, issue_number: number}); | ||
if (issueData.data.labels.length === 0 && comments.data.length < 1) { | ||
await github.issues.update({...repo, issue_number: number, state: 'closed'}); | ||
await github.issues.createComment({...repo, issue_number: number, body: 'Issue closed as it does not have any labels or comments.'}); | ||
} | ||
} |