Skip to content

Commit 3bcefb0

Browse files
committed
Merge branch 'main' into pnpm
2 parents 065cdd2 + 335efde commit 3bcefb0

File tree

4 files changed

+115
-26
lines changed

4 files changed

+115
-26
lines changed

.github/labels.yaml

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# Issue and PR Labels
2+
# Run the "Sync Labels" workflow to apply changes
3+
4+
labels:
5+
# Issue Types
6+
- name: bug
7+
color: "#d73a4a"
8+
description: Something isn't working
9+
10+
- name: enhancement
11+
color: "#a2eeef"
12+
description: New feature or request
13+
14+
- name: documentation
15+
color: "#0075ca"
16+
description: Improvements or additions to documentation
17+
18+
- name: performance
19+
color: "#f9d0c4"
20+
description: Performance related issues
21+
22+
# Issue Status
23+
- name: triage-pending
24+
color: "#fbca04"
25+
description: Awaiting initial triage
26+
27+
- name: need-more-info
28+
color: "#d876e3"
29+
description: Further information is requested
30+
31+
- name: stale
32+
color: "#ffffff"
33+
description: No recent activity
34+
35+
- name: locked
36+
color: "#ededed"
37+
description: Locked due to inactivity
38+
39+
# Issue Resolution
40+
- name: duplicate
41+
color: "#cfd3d7"
42+
description: This issue or PR already exists
43+
44+
- name: invalid
45+
color: "#e4e669"
46+
description: This doesn't seem right
47+
48+
- name: wontfix
49+
color: "#ffffff"
50+
description: This will not be worked on
51+
52+
# Priority / Importance
53+
- name: help-wanted
54+
color: "#008672"
55+
description: Extra attention is needed
56+
57+
- name: good-first-issue
58+
color: "#7057ff"
59+
description: Good for newcomers
60+
61+
- name: pinned
62+
color: "#006b75"
63+
description: Pinned issue - will not be marked stale
64+
65+
# Categories
66+
- name: prettier-core
67+
color: "#bfdadc"
68+
description: Issue is with Prettier core, not the extension
69+
70+
- name: config
71+
color: "#c2e0c6"
72+
description: Related to configuration
73+
74+
- name: plugin
75+
color: "#d4c5f9"
76+
description: Related to Prettier plugins
77+
78+
# PR Labels
79+
- name: breaking-change
80+
color: "#b60205"
81+
description: Breaking change
82+
83+
- name: dependencies
84+
color: "#0366d6"
85+
description: Pull requests that update a dependency
86+
87+
- name: github_actions
88+
color: "#000000"
89+
description: Pull requests that update GitHub Actions

.github/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ changelog:
55
exclude:
66
labels:
77
- invalid
8-
- Stale
8+
- stale
99
- need-more-info
1010
- discussion
1111
authors:

.github/workflows/issue-triage.yaml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,17 @@ jobs:
4444
issue_number: context.issue.number,
4545
body: `## Issue Incomplete
4646
47-
It looks like you used the **VS Code Issue Reporter** but didn't paste the generated content.
47+
It looks like you used the **VS Code Issue Reporter** but didn't paste the generated content.
4848
49-
### What happened
50-
VS Code copied diagnostic information to your clipboard, but it wasn't pasted into this issue.
49+
### What happened
50+
VS Code copied diagnostic information to your clipboard, but it wasn't pasted into this issue.
5151
52-
### What to do
53-
1. Close this issue
54-
2. Open a new issue using our [bug report template](https://github.com/prettier/prettier-vscode/issues/new?template=bug_report.yaml)
55-
3. Paste the clipboard content when prompted
52+
### What to do
53+
1. Close this issue
54+
2. Open a new issue using our [bug report template](https://github.com/prettier/prettier-vscode/issues/new?template=bug_report.yaml)
55+
3. Paste the clipboard content when prompted
5656
57-
Thanks for your understanding!`
57+
Thanks for your understanding!`
5858
});
5959
6060
await github.rest.issues.update({
@@ -77,7 +77,7 @@ Thanks for your understanding!`
7777
/^no$/i,
7878
/^-+$/,
7979
/^\.+$/,
80-
/^https?:\/\/github\.com\/username\//i,
80+
/^https?:\/\/github\.com\/(?:username|user[-_]name|your[-_]?username|yourusername)\//i,
8181
/^https?:\/\/github\.com\/[^/]+\/repo-name/i,
8282
/^_no response_$/i,
8383
/^\s*$/
@@ -106,26 +106,26 @@ Thanks for your understanding!`
106106
issue_number: context.issue.number,
107107
body: `## Reproduction Repository Required
108108
109-
Thanks for opening this issue! To help us investigate, we need a **reproduction repository**.
109+
Thanks for opening this issue! To help us investigate, we need a **reproduction repository**.
110110
111-
### Why we need this
112-
Most issues are configuration-specific. Without a repo we can clone and test, we usually cannot diagnose the problem.
111+
### Why we need this
112+
Most issues are configuration-specific. Without a repo we can clone and test, we usually cannot diagnose the problem.
113113
114-
### How to create a reproduction
115-
1. Create a new **public GitHub repository**
116-
2. Add the minimum files needed to reproduce the issue
117-
3. Include a \`.prettierrc\` or other config files you're using
118-
4. Edit this issue and add the repository link
114+
### How to create a reproduction
115+
1. Create a new **public GitHub repository**
116+
2. Add the minimum files needed to reproduce the issue
117+
3. Include a \`.prettierrc\` or other config files you're using
118+
4. Edit this issue and add the repository link
119119
120-
> **Tip:** The simpler the reproduction, the faster we can help!
120+
> **Tip:** The simpler the reproduction, the faster we can help!
121121
122-
### What happens next
123-
- **With a repo:** We'll investigate and respond
124-
- **Without a repo:** This issue will be automatically closed in 7 days
122+
### What happens next
123+
- **With a repo:** We'll investigate and respond
124+
- **Without a repo:** This issue will be automatically closed in 7 days
125125
126-
### Resources
127-
- [How to create a minimal reproduction](https://github.com/prettier/prettier-vscode/blob/main/docs/troubleshooting.md)
128-
- [Writing a good issue](https://github.com/prettier/prettier-vscode/blob/main/docs/writing-an-issue.md)`
126+
### Resources
127+
- [How to create a minimal reproduction](https://github.com/prettier/prettier-vscode/blob/main/docs/troubleshooting.md)
128+
- [Writing a good issue](https://github.com/prettier/prettier-vscode/blob/main/docs/writing-an-issue.md)`
129129
});
130130
}
131131

.github/workflows/labels-sync.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
push:
66
branches: [main]
77
paths:
8-
- '.github/labels.json'
8+
- ".github/labels.json"
99

1010
jobs:
1111
sync:

0 commit comments

Comments
 (0)