@vavt/github-action-test 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/issue-labeler.yml +39 -3
- package/.github/labels.yml +105 -3
- package/.github/release.yml +11 -3
- package/CHANGELOG.md +16 -0
- package/package.json +1 -1
|
@@ -1,8 +1,44 @@
|
|
|
1
1
|
'type: bug':
|
|
2
|
-
- '/(bug|error|exception|crash|defect|regression
|
|
2
|
+
- '/(bug|error|exception|crash|defect|regression|报错|异常|崩溃|问题|失效)/i'
|
|
3
3
|
'type: feature':
|
|
4
|
-
- '/(feature|enhancement|proposal|improve|优化|建议|功能|需求)/i'
|
|
4
|
+
- '/(feature|enhancement|proposal|request|improve|优化|建议|功能|需求)/i'
|
|
5
5
|
'type: docs':
|
|
6
|
-
- '/(doc|docs|documentation
|
|
6
|
+
- '/(doc|docs|documentation|readme|文档|示例)/i'
|
|
7
7
|
'type: question':
|
|
8
8
|
- '/(question|how to|usage|help|咨询|请教|怎么|如何)/i'
|
|
9
|
+
'type: performance':
|
|
10
|
+
- '/(performance|optimi[sz]e|slow|lag|卡顿|性能|优化)/i'
|
|
11
|
+
'type: security':
|
|
12
|
+
- '/(security|xss|sanitize|sanitizer|漏洞|注入|安全)/i'
|
|
13
|
+
|
|
14
|
+
'area: editor-core':
|
|
15
|
+
- '/(editor|codemirror|cursor|selection|shortcut|快捷键|编辑器|输入)/i'
|
|
16
|
+
'area: preview':
|
|
17
|
+
- '/(preview|catalog|toc|scroll|anchor|预览|目录|滚动|锚点)/i'
|
|
18
|
+
'area: toolbar':
|
|
19
|
+
- '/(toolbar|tool bar|button|dropdown|modal|工具栏|按钮|弹窗)/i'
|
|
20
|
+
'area: theme':
|
|
21
|
+
- '/(theme|style|css|dark mode|light mode|主题|样式)/i'
|
|
22
|
+
'area: upload':
|
|
23
|
+
- '/(upload|image|paste|clip|cropper|裁剪|上传|图片|粘贴)/i'
|
|
24
|
+
'area: i18n':
|
|
25
|
+
- '/(i18n|locale|language|国际化|多语言|翻译)/i'
|
|
26
|
+
'area: ssr':
|
|
27
|
+
- '/(ssr|server-side|nuxt|next|hydration|服务端渲染)/i'
|
|
28
|
+
'area: mobile':
|
|
29
|
+
- '/(mobile|ios|android|touch|h5|移动端|手机)/i'
|
|
30
|
+
'area: mermaid':
|
|
31
|
+
- '/(mermaid|flowchart|sequence diagram|gantt|流程图|时序图|甘特图)/i'
|
|
32
|
+
'area: katex':
|
|
33
|
+
- '/(katex|mathjax|formula|equation|数学公式|公式)/i'
|
|
34
|
+
'area: wysiwyg':
|
|
35
|
+
- '/(wysiwyg|rich text|所见即所得)/i'
|
|
36
|
+
'area: xss':
|
|
37
|
+
- '/(xss|sanitize|sanitizer|script injection|注入|跨站)/i'
|
|
38
|
+
'area: cdn':
|
|
39
|
+
- '/(cdn|unpkg|jsdelivr|esm\.sh|cdn\.jsdelivr|distribution)/i'
|
|
40
|
+
|
|
41
|
+
needs-demo:
|
|
42
|
+
- '/(need demo|demo required|请提供demo|提供demo|复现demo)/i'
|
|
43
|
+
needs-repro:
|
|
44
|
+
- '/(no repro|cannot reproduce|repro steps|最小复现|无法复现|缺少复现)/i'
|
package/.github/labels.yml
CHANGED
|
@@ -6,19 +6,118 @@
|
|
|
6
6
|
description: New feature or enhancement request
|
|
7
7
|
- name: 'type: docs'
|
|
8
8
|
color: 0075ca
|
|
9
|
-
description: Documentation related
|
|
9
|
+
description: Documentation related changes
|
|
10
10
|
- name: 'type: question'
|
|
11
11
|
color: d876e3
|
|
12
12
|
description: Usage or support question
|
|
13
|
+
- name: 'type: performance'
|
|
14
|
+
color: fbca04
|
|
15
|
+
description: Performance or optimization improvement
|
|
16
|
+
- name: 'type: security'
|
|
17
|
+
color: b60205
|
|
18
|
+
description: Security related issue or change
|
|
19
|
+
- name: 'type: refactor'
|
|
20
|
+
color: cfd3d7
|
|
21
|
+
description: Refactoring without behavior changes
|
|
22
|
+
|
|
23
|
+
- name: 'area: editor-core'
|
|
24
|
+
color: 5319e7
|
|
25
|
+
description: Core editor behavior and input handling
|
|
26
|
+
- name: 'area: preview'
|
|
27
|
+
color: 1d76db
|
|
28
|
+
description: Markdown preview and catalog
|
|
29
|
+
- name: 'area: toolbar'
|
|
30
|
+
color: 0e8a16
|
|
31
|
+
description: Toolbar and custom toolbar components
|
|
32
|
+
- name: 'area: theme'
|
|
33
|
+
color: c5def5
|
|
34
|
+
description: Theme, style and appearance
|
|
35
|
+
- name: 'area: upload'
|
|
36
|
+
color: 0052cc
|
|
37
|
+
description: Image upload, paste, clip and crop flow
|
|
38
|
+
- name: 'area: extensions'
|
|
39
|
+
color: 7057ff
|
|
40
|
+
description: Plugin and extension ecosystem
|
|
41
|
+
- name: 'area: i18n'
|
|
42
|
+
color: 006b75
|
|
43
|
+
description: Language pack and localization
|
|
44
|
+
- name: 'area: ssr'
|
|
45
|
+
color: 0b3d91
|
|
46
|
+
description: Server-side rendering integration
|
|
47
|
+
- name: 'area: mobile'
|
|
48
|
+
color: 6f42c1
|
|
49
|
+
description: Mobile and touch behavior
|
|
50
|
+
- name: 'area: mermaid'
|
|
51
|
+
color: 6a5acd
|
|
52
|
+
description: Mermaid rendering support
|
|
53
|
+
- name: 'area: katex'
|
|
54
|
+
color: 1f6feb
|
|
55
|
+
description: KaTeX/math rendering support
|
|
56
|
+
- name: 'area: wysiwyg'
|
|
57
|
+
color: b76e79
|
|
58
|
+
description: WYSIWYG editing mode
|
|
59
|
+
- name: 'area: xss'
|
|
60
|
+
color: 8b0000
|
|
61
|
+
description: XSS sanitization and content safety
|
|
62
|
+
- name: 'area: cdn'
|
|
63
|
+
color: b08800
|
|
64
|
+
description: CDN usage and package distribution
|
|
65
|
+
- name: 'area: docs-site'
|
|
66
|
+
color: 0366d6
|
|
67
|
+
description: Documentation site and examples
|
|
68
|
+
|
|
13
69
|
- name: needs-triage
|
|
14
70
|
color: fbca04
|
|
15
71
|
description: Needs maintainer triage
|
|
72
|
+
- name: needs-demo
|
|
73
|
+
color: 00bcd4
|
|
74
|
+
description: More details or a runnable demo is required
|
|
75
|
+
- name: needs-repro
|
|
76
|
+
color: ff9800
|
|
77
|
+
description: Reproduction steps or minimal repo required
|
|
16
78
|
- name: stale
|
|
17
79
|
color: eeeeee
|
|
18
80
|
description: Inactive issue
|
|
81
|
+
- name: release-blocker
|
|
82
|
+
color: d93f0b
|
|
83
|
+
description: Must be resolved before release
|
|
84
|
+
|
|
85
|
+
- name: 'priority: p0'
|
|
86
|
+
color: b60205
|
|
87
|
+
description: Critical issue, urgent fix
|
|
88
|
+
- name: 'priority: p1'
|
|
89
|
+
color: d93f0b
|
|
90
|
+
description: High priority
|
|
91
|
+
- name: 'priority: p2'
|
|
92
|
+
color: fbca04
|
|
93
|
+
description: Normal priority
|
|
94
|
+
- name: 'priority: p3'
|
|
95
|
+
color: 0e8a16
|
|
96
|
+
description: Low priority
|
|
97
|
+
|
|
98
|
+
- name: 'resolution: duplicate'
|
|
99
|
+
color: cfd3d7
|
|
100
|
+
description: Already tracked by another issue
|
|
101
|
+
- name: 'resolution: invalid'
|
|
102
|
+
color: e4e669
|
|
103
|
+
description: Report is invalid or incomplete
|
|
104
|
+
- name: 'resolution: not-bug'
|
|
105
|
+
color: f9d0c4
|
|
106
|
+
description: Expected behavior, not a bug
|
|
107
|
+
- name: wontfix
|
|
108
|
+
color: ffffff
|
|
109
|
+
description: This will not be worked on
|
|
110
|
+
|
|
111
|
+
- name: good first issue
|
|
112
|
+
color: 7057ff
|
|
113
|
+
description: Good for newcomers
|
|
114
|
+
- name: help wanted
|
|
115
|
+
color: 008672
|
|
116
|
+
description: Extra attention is needed
|
|
117
|
+
|
|
19
118
|
- name: breaking-change
|
|
20
119
|
color: b60205
|
|
21
|
-
description: Includes breaking API
|
|
120
|
+
description: Includes breaking API or behavior changes
|
|
22
121
|
- name: dependencies
|
|
23
122
|
color: 0366d6
|
|
24
123
|
description: Dependency updates
|
|
@@ -30,4 +129,7 @@
|
|
|
30
129
|
description: Maintenance tasks
|
|
31
130
|
- name: skip-changelog
|
|
32
131
|
color: ffffff
|
|
33
|
-
description: Exclude from release notes
|
|
132
|
+
description: Exclude from release notes and changelog
|
|
133
|
+
- name: v4xss
|
|
134
|
+
color: 8b0000
|
|
135
|
+
description: Security issues that only affect v4.x
|
package/.github/release.yml
CHANGED
|
@@ -3,23 +3,31 @@ changelog:
|
|
|
3
3
|
- title: Breaking Changes
|
|
4
4
|
labels:
|
|
5
5
|
- breaking-change
|
|
6
|
+
- release-blocker
|
|
6
7
|
- title: Features
|
|
7
8
|
labels:
|
|
8
9
|
- 'type: feature'
|
|
9
|
-
|
|
10
|
+
- title: Performance
|
|
11
|
+
labels:
|
|
12
|
+
- 'type: performance'
|
|
10
13
|
- title: Bug Fixes
|
|
11
14
|
labels:
|
|
12
15
|
- 'type: bug'
|
|
13
|
-
|
|
16
|
+
- title: Security
|
|
17
|
+
labels:
|
|
18
|
+
- 'type: security'
|
|
19
|
+
- 'area: xss'
|
|
20
|
+
- v4xss
|
|
14
21
|
- title: Documentation
|
|
15
22
|
labels:
|
|
16
23
|
- 'type: docs'
|
|
17
|
-
- documentation
|
|
18
24
|
- title: Maintenance
|
|
19
25
|
labels:
|
|
26
|
+
- 'type: refactor'
|
|
20
27
|
- chore
|
|
21
28
|
- dependencies
|
|
22
29
|
- ci
|
|
23
30
|
exclude:
|
|
24
31
|
labels:
|
|
25
32
|
- skip-changelog
|
|
33
|
+
- 'type: question'
|
package/CHANGELOG.md
CHANGED
|
@@ -2,4 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## v0.0.3 (2026-02-28)
|
|
6
|
+
|
|
7
|
+
<!-- Release notes generated using configuration in .github/release.yml at v0.0.3 -->
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
**Full Changelog**: https://github.com/imzbf/github-action-test/compare/v0.0.2...v0.0.3
|
|
12
|
+
|
|
13
|
+
## v0.0.4 (2026-02-28)
|
|
14
|
+
|
|
15
|
+
<!-- Release notes generated using configuration in .github/release.yml at v0.0.4 -->
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
**Full Changelog**: https://github.com/imzbf/github-action-test/compare/v0.0.3...v0.0.4
|
|
20
|
+
|
|
5
21
|
<!-- next-release -->
|