mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-05 00:01:37 +08:00
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:
6
.github/stale.yml
vendored
6
.github/stale.yml
vendored
@ -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:
|
||||
|
@ -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)
|
||||
|
Reference in New Issue
Block a user