Skip to content

Commit fdd80d2

Browse files
authored
Merge pull request #30 from browser-use/sync/upstream-v1.14.31
sync: upstream v1.14.31 (21f8027 on dev)
2 parents 91d1b51 + c1de808 commit fdd80d2

843 files changed

Lines changed: 32444 additions & 16984 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/VOUCHED.td

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,13 @@ adamdotdevin
1212
ariane-emory
1313
-atharvau AI review spamming literally every PR
1414
-borealbytes
15+
-carycooper777
1516
-danieljoshuanazareth
1617
-danieljoshuanazareth
18+
-davidbernat looks to be a clawdbot that spams team and sends super weird emails, doesnt appear to be a real person
19+
dmtrkovalenko
1720
edemaine
21+
fahreddinozcan
1822
-florianleibert
1923
fwang
2024
iamdavidhill
@@ -31,5 +35,6 @@ rubdos
3135
shantur
3236
simonklee
3337
-spider-yamet clawdbot/llm psychosis, spam pinging the team
38+
-terisuke
3439
thdxr
3540
-toastythebot

.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

0 commit comments

Comments
 (0)