When Creating nextjs project from gitbash cmder - but having vscode gitbash terminal open causes error: There are multiple modules with names that only differ in casing #37938
This file contains 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: Triage issues | |
on: | |
issues: | |
types: [opened, labeled] | |
issue_comment: | |
types: [created] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
issues: write | |
jobs: | |
triage: | |
name: Nissuer | |
runs-on: ubuntu-latest | |
if: >- | |
${{ | |
github.event_name != 'issue_comment' || | |
(github.event_name == 'issue_comment' && !contains(github.event.issue.labels.*.name, 'stale')) | |
}} | |
steps: | |
- uses: balazsorban44/[email protected] | |
with: | |
label-area-prefix: '' | |
label-area-match: 'name' | |
label-area-section: 'Which area\(s\) are affected\? \(Select all that apply\)(.*)### Additional context' | |
label-comments: | | |
{ | |
"good first issue": ".github/comments/good-first-issue.md", | |
"please add a complete reproduction": ".github/comments/invalid-reproduction.md", | |
"please simplify reproduction": ".github/comments/simplify-reproduction.md", | |
"please verify canary": ".github/comments/verify-canary.md", | |
"resolved": ".github/comments/resolved.md" | |
} | |
reproduction-comment: '.github/comments/invalid-link.md' | |
reproduction-hosts: 'github.com,bitbucket.org,gitlab.com,codesandbox.io,stackblitz.com' | |
reproduction-blocklist: 'github.com/vercel/next.js.*,github.com/\\w*/?$,github.com$' | |
reproduction-link-section: '### Link to the code that reproduces this issue(.*)### To Reproduce' | |
reproduction-invalid-label: 'invalid link' | |
reproduction-issue-labels: 'bug,' | |
comment-unhelpful-weight: 0.5 |