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)