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>
This commit is contained in:
Rak Laptudirm
2022-02-16 19:26:34 +05:30
committed by GitHub
parent 833d05d8d0
commit 6bd2ac682d
2 changed files with 4 additions and 3 deletions

6
.github/stale.yml vendored
View File

@ -1,6 +1,6 @@
# Number of days of inactivity before an issue becomes stale # Number of days of inactivity before an issue becomes stale (a week)
daysUntilStale: 30 daysUntilStale: 7
# Number of days of inactivity before a stale issue is closed # Number of days of inactivity before a stale issue is closed (a week)
daysUntilClose: 7 daysUntilClose: 7
# Issues with these labels will never be considered stale # Issues with these labels will never be considered stale
exemptLabels: exemptLabels:

View File

@ -255,6 +255,7 @@
* [UnionFind](https://github.com/TheAlgorithms/Javascript/blob/master/Search/UnionFind.js) * [UnionFind](https://github.com/TheAlgorithms/Javascript/blob/master/Search/UnionFind.js)
## Sorts ## Sorts
* [AlphaNumericalSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/AlphaNumericalSort.js)
* [BeadSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/BeadSort.js) * [BeadSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/BeadSort.js)
* [BogoSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/BogoSort.js) * [BogoSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/BogoSort.js)
* [BubbleSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/BubbleSort.js) * [BubbleSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/BubbleSort.js)