Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ jobs:
- uses: actions/stale@v9
with:
# Timing (separate for issues and PRs)
# -1 is actions/stale's "never close" value: items are still
# labelled stale, but they are never closed automatically.
days-before-issue-stale: 30
days-before-issue-close: 14
days-before-issue-close: -1
days-before-pr-stale: 14
days-before-pr-close: 14
days-before-pr-close: -1

# Labels
stale-issue-label: 'stale'
Expand All @@ -33,11 +35,11 @@ jobs:
# Messages
stale-issue-message: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed in 14 days if no further activity occurs.
recent activity. It will not be closed automatically.
If this issue is still relevant, please add a label or comment.
stale-pr-message: >
This PR has been automatically marked as stale because it has not had
recent activity. It will be closed in 14 days if no further activity occurs.
recent activity. It will not be closed automatically.
If this PR is still relevant, please comment or remove the stale label.

# Operations per run (GitHub API rate limiting)
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [14.6.9] - 2026-08-18

### Changed

- **Stalebot**: No longer auto-closes issues and PRs (`days-before-*-close: -1`); they are still marked stale after inactivity
- **Stale messages**: Reworded to state that items are not closed automatically, dropping the 14-day closing notice

## [14.6.8] - 2026-04-29

### Added
Expand Down Expand Up @@ -1059,6 +1066,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- LocalStorage for client-side data
- Responsive design for mobile devices

[14.6.9]: https://github.com/apermo/bodyrefactoring/compare/v14.6.8...v14.6.9
[14.6.5]: https://github.com/apermo/bodyrefactoring/compare/v14.6.4...v14.6.5
[14.6.4]: https://github.com/apermo/bodyrefactoring/compare/v14.6.3...v14.6.4
[14.6.3]: https://github.com/apermo/bodyrefactoring/compare/v14.6.2...v14.6.3
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Body Refactoring - Personal Training Tracker with Dynamic Scheduling",
"type": "project",
"license": "GPL-2.0-or-later",
"version": "14.6.8",
"version": "14.6.9",
"authors": [
{
"name": "Christoph Daum",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bodyrefactoring",
"version": "14.6.8",
"version": "14.6.9",
"private": true,
"description": "Body Refactoring - Personal Training Tracker with Dynamic Scheduling",
"scripts": {
Expand Down
Loading