chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
name: Bug report
|
||||
description: Report a reproducible bug in browser-harness.
|
||||
labels: [bug]
|
||||
body:
|
||||
- type: checkboxes
|
||||
id: preflight
|
||||
attributes:
|
||||
label: Before submitting
|
||||
options:
|
||||
- label: I searched existing issues for duplicates.
|
||||
required: true
|
||||
- label: I ran `browser-harness --doctor` and read the output.
|
||||
required: true
|
||||
- label: I read the troubleshooting section of `install.md`.
|
||||
required: true
|
||||
- label: This is a reproducible bug in browser-harness — not a question, feature request, or `cloud.browser-use.com` issue.
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: summary
|
||||
attributes:
|
||||
label: Summary
|
||||
description: What's broken, in one or two sentences.
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: repro
|
||||
attributes:
|
||||
label: Repro
|
||||
description: Numbered steps. Include the exact command and the output you saw.
|
||||
placeholder: |
|
||||
1. Chrome 147 on default profile, remote debugging on
|
||||
2. browser-harness -c 'print(page_info())'
|
||||
3. RuntimeError: DevTools is not live yet on 127.0.0.1:9222
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: environment
|
||||
attributes:
|
||||
label: Environment
|
||||
placeholder: |
|
||||
OS:
|
||||
Chrome version:
|
||||
browser-harness --version:
|
||||
browser-harness --doctor output:
|
||||
validations:
|
||||
required: true
|
||||
@@ -0,0 +1,8 @@
|
||||
blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: Question or how-to
|
||||
url: https://github.com/browser-use/browser-harness/discussions/categories/q-a
|
||||
about: Ask in Discussions Q&A, not Issues.
|
||||
- name: Install or setup troubleshooting
|
||||
url: https://github.com/browser-use/browser-harness/blob/main/install.md
|
||||
about: Most install and "DevTools not live" errors are covered here.
|
||||
@@ -0,0 +1,37 @@
|
||||
name: Feature request
|
||||
description: Propose a new feature or change.
|
||||
labels: [feature-request]
|
||||
body:
|
||||
- type: checkboxes
|
||||
id: preflight
|
||||
attributes:
|
||||
label: Before submitting
|
||||
options:
|
||||
- label: I searched existing issues and discussions.
|
||||
required: true
|
||||
- label: This is a feature request, not a bug.
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: problem
|
||||
attributes:
|
||||
label: Problem
|
||||
description: What user pain or limitation motivates this?
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: proposal
|
||||
attributes:
|
||||
label: Proposal
|
||||
description: What you'd like to happen.
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: alternatives
|
||||
attributes:
|
||||
label: Alternatives considered
|
||||
description: What else you tried, or why other approaches fall short.
|
||||
validations:
|
||||
required: true
|
||||
@@ -0,0 +1,15 @@
|
||||
# Vouched (or denounced) users for browser-harness.
|
||||
#
|
||||
# See https://github.com/mitchellh/vouch for details.
|
||||
#
|
||||
# Syntax:
|
||||
# - One handle per line (without @), sorted alphabetically.
|
||||
# - Optional platform prefix: platform:username (e.g., github:user).
|
||||
# - Denounce by prefixing with minus: -username
|
||||
# - Optional reason after a space following the handle.
|
||||
|
||||
molesza
|
||||
rohitdutt108
|
||||
shaunandrewjackson1977
|
||||
-nandanadileep # Bot
|
||||
-web-dev0521 # Fabricated profile, bot PRs
|
||||
@@ -0,0 +1,25 @@
|
||||
name: release
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
name: publish to PyPI
|
||||
runs-on: ubuntu-latest
|
||||
environment: pypi
|
||||
permissions:
|
||||
contents: read
|
||||
id-token: write
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.12"
|
||||
- name: Build distributions
|
||||
run: |
|
||||
python -m pip install --upgrade build
|
||||
python -m build
|
||||
- name: Publish distributions
|
||||
uses: pypa/gh-action-pypi-publish@release/v1
|
||||
Reference in New Issue
Block a user