From f3e2a17870f75c1876e5577cd41d2bead9e37c65 Mon Sep 17 00:00:00 2001 From: Hunter Johnston <64506580+huntabyte@users.noreply.github.com> Date: Tue, 11 Feb 2025 19:23:29 -0500 Subject: [PATCH] registry: pin bits-ui for svelte 4 in prep of v1 (#1682) --- .github/ISSUE_TEMPLATE/1-documentation_change.yml | 2 +- .github/ISSUE_TEMPLATE/2-feature_request.yml | 2 +- .github/ISSUE_TEMPLATE/3-bug_report.yml | 3 ++- .github/PULL_REQUEST_TEMPLATE.md | 2 ++ .github/workflows/reproduire-close.yml | 4 ++-- .github/workflows/reproduire.yml | 2 +- sites/docs/scripts/tmp.ts | 5 ++++- 7 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1-documentation_change.yml b/.github/ISSUE_TEMPLATE/1-documentation_change.yml index 66badf63e..492d7a066 100644 --- a/.github/ISSUE_TEMPLATE/1-documentation_change.yml +++ b/.github/ISSUE_TEMPLATE/1-documentation_change.yml @@ -1,6 +1,6 @@ name: Report Docs Issue description: Suggest an addition or modification to the documentation -labels: ["type: documentation"] +labels: [triage] body: - type: dropdown attributes: diff --git a/.github/ISSUE_TEMPLATE/2-feature_request.yml b/.github/ISSUE_TEMPLATE/2-feature_request.yml index b4d243b24..f82abefa1 100644 --- a/.github/ISSUE_TEMPLATE/2-feature_request.yml +++ b/.github/ISSUE_TEMPLATE/2-feature_request.yml @@ -1,6 +1,6 @@ name: Feature request description: Request a new feature -labels: ["type: feature"] +labels: [triage] body: - type: checkboxes attributes: diff --git a/.github/ISSUE_TEMPLATE/3-bug_report.yml b/.github/ISSUE_TEMPLATE/3-bug_report.yml index 2cdeccb6f..79276f58a 100644 --- a/.github/ISSUE_TEMPLATE/3-bug_report.yml +++ b/.github/ISSUE_TEMPLATE/3-bug_report.yml @@ -1,5 +1,6 @@ name: Bug report description: Report an issue with shadcn-svelte +labels: [triage] body: - type: markdown attributes: @@ -24,7 +25,7 @@ body: attributes: label: Reproduction description: | - Provide a minimal reproduction of the problem. Include a StackBlitz or link to a GitHub repository that we can easily run to recreate the issue. If a report is vague and does not have a reproduction, it will be closed without warning. + Provide a minimal reproduction of the problem. Include a StackBlitz or link to a GitHub repository that we can easily run to recreate the issue. If a report is vague and does not have a reproduction, it will be closed without warning. To get started, you can use the following StackBlitz template: https://shadcn-svelte.com/repro diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 81420086b..45a934e4b 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,6 +1,8 @@ + diff --git a/.github/workflows/reproduire-close.yml b/.github/workflows/reproduire-close.yml index 9c99678c6..02fbd03c7 100644 --- a/.github/workflows/reproduire-close.yml +++ b/.github/workflows/reproduire-close.yml @@ -14,8 +14,8 @@ jobs: - uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0 with: days-before-stale: -1 # Issues and PR will never be flagged stale automatically. - stale-issue-label: "status: needs reproduction" # Label that flags an issue as stale. - only-labels: "status: needs reproduction" # Only process these issues + stale-issue-label: needs reproduction # Label that flags an issue as stale. + only-labels: needs reproduction # Only process these issues days-before-issue-close: 7 ignore-updates: true remove-stale-when-updated: false diff --git a/.github/workflows/reproduire.yml b/.github/workflows/reproduire.yml index b75bea220..0529b24c6 100644 --- a/.github/workflows/reproduire.yml +++ b/.github/workflows/reproduire.yml @@ -13,4 +13,4 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - uses: Hebilicious/reproduire@4b686ae9cbb72dad60f001d278b6e3b2ce40a9ac # v0.0.9-mp with: - label: "status: needs reproduction" + label: needs reproduction diff --git a/sites/docs/scripts/tmp.ts b/sites/docs/scripts/tmp.ts index 96e1e2a63..e74faf4a4 100644 --- a/sites/docs/scripts/tmp.ts +++ b/sites/docs/scripts/tmp.ts @@ -1 +1,4 @@ -export const TMP_PINNED_DEPS = new Map([["formsnap", "formsnap@1.0.1"]]); +export const TMP_PINNED_DEPS = new Map([ + ["formsnap", "formsnap@1.0.1"], + ["bits-ui", "bits-ui@0.22.0"], +]);