@@ -12,7 +12,7 @@ def add_initial_tags(apps, schema_editor):
1212 Tag (name = "Bugfix" , color = "#a51d2d" , description = "Fixes a bug" ),
1313 Tag (
1414 name = "Backport" ,
15- color = "#1a5fb4 " ,
15+ color = "#3d3846 " ,
1616 description = "Once merged should be backported to old branches" ,
1717 ),
1818 Tag (
@@ -55,6 +55,97 @@ def add_initial_tags(apps, schema_editor):
5555 color = "#613583" ,
5656 description = "An easy to review patch for a new reviewer" ,
5757 ),
58+ Tag (
59+ name = "libpq" ,
60+ color = "#1a5fb4" ,
61+ description = "Makes significant libpq changes" ,
62+ ),
63+ Tag (
64+ name = "psql" ,
65+ color = "#1a5fb4" ,
66+ description = "Makes significant psql changes" ,
67+ ),
68+ Tag (
69+ name = "Performance" ,
70+ color = "#1a5fb4" ,
71+ description = "Improves performance" ,
72+ ),
73+ Tag (
74+ name = "Logical Replication" ,
75+ color = "#1a5fb4" ,
76+ description = "Makes significant logical replication changes" ,
77+ ),
78+ Tag (
79+ name = "Physical Replication" ,
80+ color = "#1a5fb4" ,
81+ description = "Makes significant physical replication changes" ,
82+ ),
83+ Tag (
84+ name = "Refactoring Only" ,
85+ color = "#1a5fb4" ,
86+ description = "Only refactores code without changing functionality" ,
87+ ),
88+ Tag (
89+ name = "Comments Only" ,
90+ color = "#1a5fb4" ,
91+ description = "Only updates code comments" ,
92+ ),
93+ Tag (
94+ name = "Docs Only" ,
95+ color = "#1a5fb4" ,
96+ description = "Only updates user facing documentation" ,
97+ ),
98+ Tag (
99+ name = "CI" ,
100+ color = "#1a5fb4" ,
101+ description = "Makes changes to the CI configuration or scripts" ,
102+ ),
103+ Tag (
104+ name = "Testing" ,
105+ color = "#1a5fb4" ,
106+ description = "Adds/modifies tests or improves our testing frameworks" ,
107+ ),
108+ Tag (
109+ name = "Monitoring" ,
110+ color = "#1a5fb4" ,
111+ description = "Adds new monitoring features or improves existing ones" ,
112+ ),
113+ Tag (
114+ name = "GUC" ,
115+ color = "#1a5fb4" ,
116+ description = "Adds/modifies configuration parameters (GUCs)" ,
117+ ),
118+ Tag (
119+ name = "PL/pgSQL" ,
120+ color = "#1a5fb4" ,
121+ description = "Involves changes to PL/pgSQL" ,
122+ ),
123+ Tag (
124+ name = "PL/Python" ,
125+ color = "#1a5fb4" ,
126+ description = "Involves changes to PL/Python" ,
127+ ),
128+ Tag (
129+ name = "PL/Perl" ,
130+ color = "#1a5fb4" ,
131+ description = "Involves changes to PL/Perl" ,
132+ ),
133+ Tag (
134+ name = "PL/Tcl" ,
135+ color = "#1a5fb4" ,
136+ description = "Involves changes to PL/Perl" ,
137+ ),
138+ Tag (
139+ name = "dblink" ,
140+ color = "#1a5fb4" ,
141+ description = "Involves changes to dblink" ,
142+ ),
143+ Tag (
144+ name = "postgres_fdw" ,
145+ color = "#1a5fb4" ,
146+ description = "Involves changes to postgres_fdw" ,
147+ ),
148+ Tag (name = "Security" , color = "#a51d2d" , description = "Improves security" ),
58149 ]
59150 )
60151
0 commit comments