From a155e7c1a715848e2a221852245b47e09fffd862 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Wed, 17 Jul 2024 14:52:59 +0200 Subject: [PATCH] chore(github): update --- .github/ISSUE_TEMPLATE/bug-report.yml | 2 +- .github/ISSUE_TEMPLATE/config.yml | 4 ++-- .github/ISSUE_TEMPLATE/feature-request.yml | 2 +- .github/workflows/stale.yml | 21 +++++++++++++++++++++ 4 files changed, 25 insertions(+), 4 deletions(-) create mode 100644 .github/workflows/stale.yml 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