From 6bd2ac682de4cbe8f9489a2deb7fe6f771aed1fa Mon Sep 17 00:00:00 2001 From: Rak Laptudirm Date: Wed, 16 Feb 2022 19:26:34 +0530 Subject: [PATCH] merge: Decrease time period for marking an issue stale (#885) * chore: mark stale after 7 days of inactivity * Auto-update DIRECTORY.md * chore: length info provided in comments Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> --- .github/stale.yml | 6 +++--- DIRECTORY.md | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/stale.yml b/.github/stale.yml index fe51e49e4..447e204a5 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -1,6 +1,6 @@ -# Number of days of inactivity before an issue becomes stale -daysUntilStale: 30 -# Number of days of inactivity before a stale issue is closed +# Number of days of inactivity before an issue becomes stale (a week) +daysUntilStale: 7 +# Number of days of inactivity before a stale issue is closed (a week) daysUntilClose: 7 # Issues with these labels will never be considered stale exemptLabels: diff --git a/DIRECTORY.md b/DIRECTORY.md index 46aa5907c..927b3b1bd 100644 --- a/DIRECTORY.md +++ b/DIRECTORY.md @@ -255,6 +255,7 @@ * [UnionFind](https://github.com/TheAlgorithms/Javascript/blob/master/Search/UnionFind.js) ## Sorts + * [AlphaNumericalSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/AlphaNumericalSort.js) * [BeadSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/BeadSort.js) * [BogoSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/BogoSort.js) * [BubbleSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/BubbleSort.js)