🐛 Does not apply formatter.lineEnding #115
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@a610082f8ac0cf03e357eb8dd0d5e2ba075e017e # v3.6.0 | |
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@a610082f8ac0cf03e357eb8dd0d5e2ba075e017e # v3.6.0 | |
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" |