diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index b937a3e5..5cb32b2b 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -1,6 +1,6 @@ name: "🐛 Bug report" description: Report a bug to help us improve the module. -labels: ["bug"] +labels: ["triage"] body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index eb7d69d7..05927c11 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -4,5 +4,5 @@ contact_links: url: https://ui.nuxt.com about: Check the documentation for guides and examples. - name: 📚 Discord - url: https://discord.com/channels/473401852243869706/1153996761426300948 - about: Consider asking questions in the `#ui` channel. + url: https://go.nuxt.com/discord + about: Consider asking questions in the help channel. diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml index c147b02c..4b4ae394 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -1,6 +1,6 @@ name: "🚀 Feature request" description: Suggest an idea or enhancement for the module. -labels: ["enhancement"] +labels: ["triage"] body: - type: markdown attributes: diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 00000000..1f3d0e5d --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,21 @@ +name: stale + +on: + schedule: + - cron: '30 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + + permissions: + issues: write + pull-requests: write + + steps: + - uses: actions/stale@v9 + with: + exempt-issue-labels: triage,v3 + stale-issue-message: 'This issue is stale because it has been open for 30 days with no activity.' + days-before-stale: 30 + days-before-close: -1