mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* chore: add security guidelines to pr & issue template * Apply suggestions from code review Co-authored-by: Balázs Orbán <info@balazsorban.com>
62 lines
2.2 KiB
YAML
62 lines
2.2 KiB
YAML
name: Question
|
|
description: Ask a question about NextAuth.js or for help using it
|
|
labels: [question]
|
|
|
|
# note: markdown sections will NOT appear as part of the issue as per documentation, rather they provide context to the user
|
|
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#markdown
|
|
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
**NOTE:** Issues that are potentially security related should be reported to us by following the [Security guidelines](https://next-auth.js.org/security) rather than on GitHub.
|
|
We are glad that you have a question about this library. Please provide the following information:
|
|
|
|
- type: textarea
|
|
id: question
|
|
attributes:
|
|
label: Question 💬
|
|
description: Please provide an in-depth description of the question you have.
|
|
validations:
|
|
required: true
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Make sure you [link]() to external documentation if necessary and provide inline code examples like so:
|
|
|
|
```js
|
|
function myAwesomeNextAuthFeature() {
|
|
return 💚
|
|
}
|
|
```
|
|
|
|
**NOTE:** Questions will be converted to Discussions. You can find them [here](https://github.com/nextauthjs/next-auth/discussions)!
|
|
|
|
- type: textarea
|
|
id: reproduction
|
|
attributes:
|
|
label: How to reproduce ☕️
|
|
description: Please provide a link to a minimal reproduction or code snippets that represents your question
|
|
validations:
|
|
required: true
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
We encourage you to use the template set-up on **CodeSandbox** as a playground to represent your question or doubt:
|
|
- [`next-auth-example`](https://codesandbox.io/s/next-auth-example-1kktb)
|
|
|
|
- type: dropdown
|
|
id: pr
|
|
attributes:
|
|
label: Contributing 🙌🏽
|
|
multiple: false
|
|
options:
|
|
- "Yes, I am willing to help answer this question in a PR"
|
|
- "No, I am afraid I cannot help regarding this"
|
|
validations:
|
|
required: true
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
It takes a lot of work 🏋🏻♀️ maintaining a library like `next-auth`; any contribution is more than welcome 💚
|