mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
chore: add a bug template for browsers (#10543)
This commit is contained in:
parent
5e50bf2104
commit
61b52a337e
6
.github/ISSUE_TEMPLATE/bug.yml
vendored
6
.github/ISSUE_TEMPLATE/bug.yml
vendored
@ -108,7 +108,7 @@ body:
|
||||
label: Puppeteer version
|
||||
description: >
|
||||
What version of Puppeteer are you running? *This must be a valid semver
|
||||
tag.*
|
||||
tag, for example, `20.8.1`.*
|
||||
validations:
|
||||
required: true
|
||||
- id: node-version
|
||||
@ -117,7 +117,7 @@ body:
|
||||
label: Node version
|
||||
description: >
|
||||
What supported version of Node.js are you running? *This must be a valid
|
||||
semver tag.*
|
||||
semver tag, for example, `20.3.1`.*
|
||||
validations:
|
||||
required: true
|
||||
- id: pkg-mgr
|
||||
@ -137,7 +137,7 @@ body:
|
||||
label: Package manager version
|
||||
description: >
|
||||
What version of the package manager are you running? *This must be a
|
||||
valid semver tag.*
|
||||
valid semver tag, for example, `9.6.7`.*
|
||||
validations:
|
||||
required: true
|
||||
- id: operating-system
|
||||
|
4
.github/ISSUE_TEMPLATE/issue-browsers.yml
vendored
Normal file
4
.github/ISSUE_TEMPLATE/issue-browsers.yml
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
name: Bug for @puppeteer/browsers
|
||||
description: File a bug report specifically about the `@puppeteer/browsers` package.
|
||||
title: '[Bug]: '
|
||||
labels: [bug, '@puppeteer/browsers']
|
2
.github/workflows/issue-analyzer.yml
vendored
2
.github/workflows/issue-analyzer.yml
vendored
@ -14,7 +14,7 @@ jobs:
|
||||
analyze-issue:
|
||||
name: Analyze Issues
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ contains(github.event.issue.labels.*.name, 'bug') && !contains(github.event.issue.labels.*.name, 'disable-analyzer') && !contains(github.event.issue.labels.*.name, 'confirmed') && github.event.issue.number > 9481 }}
|
||||
if: ${{ contains(github.event.issue.labels.*.name, 'bug') && !contains(github.event.issue.labels.*.name, 'disable-analyzer') && !contains(github.event.issue.labels.*.name, 'confirmed') && !contains(github.event.issue.labels.*.name, '@puppeteer/browsers') && github.event.issue.number > 9481 }}
|
||||
env:
|
||||
ISSUE_BODY: ${{ toJson(github.event.issue.body) }}
|
||||
outputs:
|
||||
|
Loading…
Reference in New Issue
Block a user