Skip to content

Commit

Permalink
chore: add a bug template for browsers
Browse files Browse the repository at this point in the history
and give examples of what a version looks like.
  • Loading branch information
OrKoN committed Jul 11, 2023
1 parent 5e50bf2 commit 2ee931c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
4 changes: 4 additions & 0 deletions .github/ISSUE_TEMPLATE/issue-browsers.yml
Original file line number Diff line number Diff line change
@@ -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 changes: 1 addition & 1 deletion .github/workflows/issue-analyzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 2ee931c

Please sign in to comment.