Skip to content

🐛 useExhaustiveDependencies fixes do not show up in quickfix menu #126

🐛 useExhaustiveDependencies fixes do not show up in quickfix menu

🐛 useExhaustiveDependencies fixes do not show up in quickfix menu #126

Workflow file for this run

name: Needs reproduction
on:
issues:
types: [ labeled ]
permissions:
issues: write
jobs:
reply-labeled:
if: github.repository == 'biomejs/biome-vscode'
runs-on: depot-ubuntu-24.04-arm-small
steps:
- name: Remove triaging label
if: contains(github.event.issue.labels.*.name, 'Bug confirmed') && contains(github.event.issue.labels.*.name, 'Triage')
uses: actions-cool/issues-helper@50068f49b7b2b3857270ead65e2d02e4459b022c # v3.6.2
with:
actions: "remove-labels"
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
labels: "Triage"
- name: Needs reproduction
if: github.event.label.name == 'Needs reproduction'
uses: actions-cool/issues-helper@50068f49b7b2b3857270ead65e2d02e4459b022c # v3.6.2
with:
actions: "create-comment, remove-labels"
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
body: |
Hello @${{ github.event.issue.user.login }}, please provide a minimal reproduction. You can use one of the following options:
- Provide a link to [our playground](https://biomejs.dev/playground), if it's applicable.
- Provide a link to a GitHub repository. To easily create a reproduction, you can use our interactive CLI via `npm create @biomejs/biome-reproduction`
Issues marked with `Needs reproduction` will be **closed** if they have **no activity within 3 days**.
labels: "Triage"