mirror of
https://github.com/actions/stale.git
synced 2025-12-28 02:58:17 +00:00
* sort-issues-by introduced * action.yml updated * pushing the build code * Update action.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update README.md for the new parameter (sort-issues-by) * minor text format changes in README.md * final draft of sort-issues-by * Update src/interfaces/issues-processor-options.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update src/classes/issues-processor.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * refactored the code * test * test * final changes * update in README.md * Documentation update * updated sort-issues-by to sort-by * minor changes * dist fixes --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
9 lines
242 B
TypeScript
9 lines
242 B
TypeScript
type sortOptions = 'created' | 'updated' | 'comments';
|
|
export function getSortField(sortOption: sortOptions): sortOptions {
|
|
return sortOption === 'updated'
|
|
? 'updated'
|
|
: sortOption === 'comments'
|
|
? 'comments'
|
|
: 'created';
|
|
}
|