vp link linked package does not appear in the vp list -g output
#220
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: Issue Labeled | |
| on: | |
| issues: | |
| types: [labeled] | |
| jobs: | |
| reply-labeled: | |
| if: github.repository == 'voidzero-dev/vite-plus' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: Remove triage labels (contribution welcome / help wanted) | |
| if: github.event.label.name == 'contribution welcome' || github.event.label.name == 'help wanted' | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GH_REPO: ${{ github.repository }} | |
| ISSUE_NUMBER: ${{ github.event.issue.number }} | |
| shell: bash | |
| run: | | |
| gh issue edit "$ISSUE_NUMBER" \ | |
| --remove-label "pending triage" \ | |
| --remove-label "needs reproduction" || true | |
| - name: Comment and remove triage on "needs reproduction" | |
| if: github.event.label.name == 'needs reproduction' | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GH_REPO: ${{ github.repository }} | |
| ISSUE_NUMBER: ${{ github.event.issue.number }} | |
| ISSUE_USER: ${{ github.event.issue.user.login }} | |
| shell: bash | |
| run: | | |
| gh issue comment "$ISSUE_NUMBER" --body "Hello @${ISSUE_USER} 👋 | |
| Please provide a [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) using a GitHub repository. This helps us understand and resolve your issue much faster. | |
| **A good reproduction should be:** | |
| - **Minimal** – include only the code necessary to demonstrate the issue | |
| - **Complete** – contain everything needed to run and observe the problem | |
| - **Reproducible** – consistently show the issue with clear steps | |
| If no reproduction is provided, issues labeled \`needs reproduction\` will be closed after 3 days of inactivity. | |
| For more context on why this is required, please read: https://antfu.me/posts/why-reproductions-are-required" | |
| gh issue edit "$ISSUE_NUMBER" --remove-label "pending triage" || true |