🐛 Astro files corrupting #102
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 ] | |
| jobs: | |
| reply-labeled: | |
| if: github.repository == 'biomejs/biome-zed' | |
| runs-on: depot-ubuntu-24.04-arm-small | |
| steps: | |
| - name: Remove triaging label | |
| if: contains(github.event.issue.labels.*.name, 'S-Bug-confirmed') && contains(github.event.issue.labels.*.name, 'S-Needs triage') | |
| env: | |
| GH_TOKEN: ${{ secrets.BIOME_ISSUE_AUTOMATION }} | |
| ISSUE_NUMBER: ${{ github.event.issue.number }} | |
| REPO: ${{ github.repository }} | |
| run: gh issue edit "$ISSUE_NUMBER" --repo "$REPO" --remove-label "S-Needs triage" | |
| - name: Needs reproduction | |
| if: github.event.label.name == 'S-Needs repro' | |
| env: | |
| GH_TOKEN: ${{ secrets.BIOME_ISSUE_AUTOMATION }} | |
| ISSUE_NUMBER: ${{ github.event.issue.number }} | |
| REPO: ${{ github.repository }} | |
| AUTHOR: ${{ github.event.issue.user.login }} | |
| run: | | |
| gh issue comment "$ISSUE_NUMBER" --repo "$REPO" --body "Hello @$AUTHOR, 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 GitHub repository. To easily create a reproduction, you can use our interactive CLI via \`npm create @biomejs/biome-reproduction\` | |
| **Remember to include .zed/settings.json** | |
| Issues marked with \`S-Needs repro\` will be **closed** if they have **no activity within 3 days**." | |
| gh issue edit "$ISSUE_NUMBER" --repo "$REPO" --remove-label "S-Needs triage" |