Skip to content

Commit

Permalink
DOP-4599 return for deploy all
Browse files Browse the repository at this point in the history
  • Loading branch information
anabellabuckvar committed May 31, 2024
1 parent 8a7935b commit 5598d46
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/services/slack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,7 @@ export class SlackConnector implements ISlackConnector {
//append version to repo_option if active
values['repo_option'] = [];
for (const group of optionGroups) {
values['repo_option'].push(
...group.options.filter((option) => {
!option.text.text.startsWith('(!inactive)');
})
);
values['repo_option'].push(...group.options.filter((option) => !option.text.text.startsWith('(!inactive)')));
}
return values;
}
Expand Down

0 comments on commit 5598d46

Please sign in to comment.