-
-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into option-to-tokens-cookie-name
- Loading branch information
Showing
9 changed files
with
156 additions
and
34 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
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
blank_issues_enabled: true | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: 📚 nuxt-auth documentation | ||
- name: 📚 Documentation | ||
url: https://sidebase.io/nuxt-auth | ||
about: Check the documentation for usage of nuxt-auth | ||
- name: 💬 Discussions | ||
url: https://github.com/sidebase/nuxt-auth/discussions | ||
about: Use discussions if you have another issue, an idea for improvement or for asking questions. | ||
about: Check the documentation for usage of nuxt-auth! | ||
- name: ⭐ Other projects | ||
url: https://sidebase.io | ||
about: Supercharge your Nuxt application with more of our projects! |
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,49 @@ | ||
name: "🚀 Enchantment" | ||
description: Suggest an enchantment that will improve NuxtAuth | ||
labels: ["pending", "enchantment"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for taking the time to fill out this feature request! | ||
Please note: Only post enchanments that you have properly considered. This means: | ||
- You have properly determined what problem your enchanment fixes | ||
- How you would recommend implementing your enchancement | ||
- How this change would impact NuxtAuth | ||
If you are still unsure about your implementation or would like to discuss it prior, open a discussion first: | ||
👉 https://github.com/sidebase/nuxt-auth/discussions/new?category=feature-requests | ||
- type: textarea | ||
id: feature-description | ||
attributes: | ||
label: Describe the feature | ||
description: A clear and concise description of what you think would be a helpful addition to NuxtAuth, including the possible use cases and alternatives you have considered. | ||
placeholder: Feature description | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: feature-implementation | ||
attributes: | ||
label: How would you implement this? | ||
description: For this, please outline how this feature would work. This could be in the form of a textual description, or a walkthrough of what would be adjusted inside the code. | ||
placeholder: Feature description | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: additional-info | ||
attributes: | ||
label: Additional information | ||
description: Additional information that helps us decide how to proceed. | ||
options: | ||
- label: Would you be willing to help implement this feature? | ||
- type: checkboxes | ||
id: provider-selection | ||
attributes: | ||
label: Provider | ||
description: Please check the provider this feature targets. | ||
options: | ||
- label: AuthJS | ||
- label: Local | ||
- label: Refresh | ||
- label: New Provider |
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,27 @@ | ||
<!--- | ||
☝️ PR title should follow conventional commits (https://conventionalcommits.org) | ||
--> | ||
|
||
### 🔗 Linked issue | ||
|
||
<!-- Please ensure there is an open issue and mention its number as #123 --> | ||
|
||
### ❓ Type of change | ||
|
||
<!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply. --> | ||
|
||
- [ ] 📖 Documentation (updates to the documentation, readme or JSdoc annotations) | ||
- [ ] 🐞 Bug fix (a non-breaking change that fixes an issue) | ||
- [ ] 👌 Enhancement (improving an existing functionality like performance) | ||
- [ ] ✨ New feature (a non-breaking change that adds functionality) | ||
- [ ] 🧹 Chore (updates to the build process or auxiliary tools and libraries) | ||
- [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to change) | ||
|
||
### 📚 Description | ||
|
||
|
||
### 📝 Checklist | ||
|
||
- [ ] I have linked an issue or discussion. | ||
- [ ] I have added tests (if possible). | ||
- [ ] I have updated the documentation accordingly. |
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 @@ | ||
Hello 👋 | ||
|
||
Please provide a [reproduction](https://nuxt.com/docs/community/reporting-bugs/#create-a-minimal-reproduction) for this issue 🙏 | ||
|
||
<details> | ||
<summary>How can I create a reproduction?</summary> | ||
|
||
Please use one of the following links to reproduce your issue. | ||
|
||
- https://stackblitz.com/github/nuxt/starter/tree/v3-stackblitz | ||
- https://codesandbox.io/s/github/nuxt/starter/v3-codesandbox | ||
|
||
Please ensure that the reproduction is as **minimal** as possible. This will allow us to isolate the issue as best as possible. | ||
|
||
Here are some more amazing posts about the importance of reproductions: | ||
- [The Importance of Reproductions](https://antfu.me/posts/why-reproductions-are-required) | ||
- [How to Generate a Minimal, Complete, and Verifiable Example](https://stackoverflow.com/help/minimal-reproducible-example) | ||
|
||
</details> |
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,24 @@ | ||
name: Close incomplete issues | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '30 1 * * *' # run every day | ||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
days-before-stale: -1 # Issues and PR will never be flagged stale automatically. | ||
stale-issue-label: 'needs reproduction' # Label that flags an issue as stale. | ||
only-labels: 'needs reproduction' # Only process these issues | ||
days-before-issue-close: 14 | ||
ignore-updates: true | ||
remove-stale-when-updated: false | ||
close-issue-message: This issue was closed because it was open for 14 days without a reproduction. | ||
close-issue-label: closed-by-bot | ||
operations-per-run: 300 #default 30 |
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,16 @@ | ||
name: Reproduire | ||
on: | ||
issues: | ||
types: [labeled] | ||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
reproduire: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: Hebilicious/reproduire@4b686ae9cbb72dad60f001d278b6e3b2ce40a9ac # v0.0.9-mp | ||
with: | ||
label: needs-reproduction |
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