Skip to content

Commit

Permalink
DOP-4356 reverse slack modal sort
Browse files Browse the repository at this point in the history
  • Loading branch information
anabellabuckvar committed Feb 8, 2024
1 parent 8215c54 commit 1c7e6c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/deploy-stg-ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
branches:
- "main"
- "integration"
- "DOP-4356"
concurrency:
group: environment-stg-${{ github.ref }}
cancel-in-progress: true
Expand Down
2 changes: 1 addition & 1 deletion src/services/slack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export class SlackConnector implements ISlackConnector {
if (reposToShow.length > 100) {
reposToShow = reposToShow.splice(0, 100);
}
reposToShow.sort();
reposToShow.sort().reverse();
return this._getDropDownView(triggerId, reposToShow);
}
}

0 comments on commit 1c7e6c5

Please sign in to comment.