Skip to content

Commit 4e8020b

Browse files
authored
Merge branch 'dev' into feat/canceled-prompts-in-history
2 parents 09e4e5a + 9f708e7 commit 4e8020b

984 files changed

Lines changed: 71287 additions & 37694 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: Bug report
22
description: Report an issue that should be fixed
3-
labels: ["bug"]
43
body:
54
- type: textarea
65
id: description

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: 🚀 Feature Request
22
description: Suggest an idea, feature, or enhancement
3-
labels: [discussion]
43
title: "[FEATURE]:"
54

65
body:

.github/ISSUE_TEMPLATE/question.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: Question
22
description: Ask a question
3-
labels: ["question"]
43
body:
54
- type: textarea
65
id: question

.github/TEAM_MEMBERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ MrMushrooooom
1111
nexxeln
1212
R44VC0RP
1313
rekram1-node
14-
RhysSullivan
1514
thdxr
15+
simonklee

.github/VOUCHED.td

Lines changed: 0 additions & 35 deletions
This file was deleted.

.github/actions/setup-bun/action.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
name: "Setup Bun"
22
description: "Setup Bun with caching and install dependencies"
3+
inputs:
4+
install-flags:
5+
description: "Additional flags to pass to 'bun install'"
6+
required: false
7+
default: ""
38
runs:
49
using: "composite"
510
steps:
@@ -46,8 +51,8 @@ runs:
4651
# e.g. ./patches/ for standard-openapi
4752
# https://github.com/oven-sh/bun/issues/28147
4853
if [ "$RUNNER_OS" = "Windows" ]; then
49-
bun install --linker hoisted
54+
bun install --linker hoisted ${{ inputs.install-flags }}
5055
else
51-
bun install
56+
bun install ${{ inputs.install-flags }}
5257
fi
5358
shell: bash

.github/workflows/daily-issues-recap.yml

Lines changed: 0 additions & 170 deletions
This file was deleted.

0 commit comments

Comments
 (0)