File tree Expand file tree Collapse file tree
twind.run/src/lib/components
twind.style/src/lib/template Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ ' @sites/twind.run ' : patch
3+ ' @sites/twind.style ' : patch
4+ ---
5+
6+ add labels to new issue links
Original file line number Diff line number Diff line change 2222 function createBugReportURL (reproduction = $page .url .toString (), systemInfo = ' ' ) {
2323 const url = new URL (' https://github.com/tw-in-js/twind/issues/new' )
2424 url .searchParams .set (' template' , ' bug_report.yml' )
25+ url .searchParams .set (' labels' , ' 🐞 Bug' )
2526 url .searchParams .set (' reproduction' , reproduction)
2627 if (systemInfo) {
2728 url .searchParams .set (' system-info' , systemInfo)
Original file line number Diff line number Diff line change 2323 function createBugReportURL (link = $page .url .toString ()) {
2424 const url = new URL (' https://github.com/tw-in-js/twind/issues/new' )
2525 url .searchParams .set (' template' , ' docs.yml' )
26+ url .searchParams .set (' labels' , ' 📚 Documentation' )
2627 url .searchParams .set (' affects' , ` - ${ link} ` )
2728 return url .toString ()
2829 }
You can’t perform that action at this time.
0 commit comments