Skip to content

Commit

Permalink
Update label names and colours.
Browse files Browse the repository at this point in the history
  • Loading branch information
rtibbles authored Dec 16, 2022
1 parent 1a5c058 commit f65f483
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/run-action.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,29 @@ const existsLabel = require('./github/exists-label');
const getLabelConfig = (tools) => {
const labelConfig = [
{
name: 'size_xs',
name: 'SIZE: very small',
size: tools.inputs.xs_max_size,
color: 'abdee6',
},
{
name: 'size_s',
name: 'SIZE: small',
size: tools.inputs.s_max_size,
color: 'cbaacb',
color: 'abdee6',
},
{
name: 'size_m',
name: 'SIZE: medium',
size: tools.inputs.m_max_size,
color: 'ffaea5',
color: 'abdee6',
},
{
name: 'size_l',
name: 'SIZE: large',
size: tools.inputs.l_max_size,
color: 'ffffb5',
color: 'abdee6',
},
{
name: 'size_xl',
name: 'SIZE: very large',
size: Infinity,
color: 'cce2cb',
color: 'abdee6',
},
];
return labelConfig;
Expand Down

0 comments on commit f65f483

Please sign in to comment.