mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
9c3d87d2b1
Bumps [actions/stale](https://github.com/actions/stale) from 9 to 10. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v9...v10) --- updated-dependencies: - dependency-name: actions/stale dependency-version: '10' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
70 lines
2.8 KiB
YAML
70 lines
2.8 KiB
YAML
# Warns then closes issues and PRs that have had no activity for a specified amount of time.
|
|
# Configuration reference: https://github.com/actions/stale
|
|
name: Mark stale issues and pull requests
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '16 22 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- uses: actions/stale@v10
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
days-before-issue-stale: 60
|
|
days-before-issue-close: 14
|
|
days-before-pr-stale: 30
|
|
days-before-pr-close: 14
|
|
|
|
stale-issue-label: 'no-issue-activity'
|
|
stale-pr-label: 'no-pr-activity'
|
|
|
|
exempt-issue-labels: 'pinned,security,bug,enhancement,help-wanted,good-first-issue'
|
|
exempt-pr-labels: 'pinned,security,work-in-progress,blocked'
|
|
|
|
stale-issue-message: |
|
|
This issue has had no activity for 60 days and is being marked as stale.
|
|
|
|
If it's still relevant, please leave a comment — otherwise it will be closed in 14 days.
|
|
|
|
Things that help keep an issue moving:
|
|
- A current reproduction (steps, config, or a failing test)
|
|
- Output of `python --version && uv --version` (and Docker/Compose versions if it's a deployment issue)
|
|
- Any new findings since the last activity
|
|
|
|
Maintainers can keep this open indefinitely by adding the `pinned` label.
|
|
|
|
close-issue-message: |
|
|
Closing this issue due to inactivity.
|
|
|
|
No worries — feel free to reopen with fresh context (reproduction, logs, version info) if the problem still occurs on the latest image. Thanks for the original report!
|
|
|
|
stale-pr-message: |
|
|
This pull request has had no activity for 30 days and is being marked as stale.
|
|
|
|
If you'd like to keep it moving, please:
|
|
- Rebase or merge the latest `master` into your branch
|
|
- Address any unresolved review comments
|
|
- Make sure CI is green (`make quality` for the backend; `pnpm lint` + `pnpm exec tsc --noEmit` for the panel)
|
|
- Confirm the entry under `## [Unreleased]` in `CHANGELOG.md` is still accurate
|
|
|
|
Otherwise this PR will be closed in 14 days. Closed PRs can always be reopened.
|
|
|
|
close-pr-message: |
|
|
Closing this pull request due to inactivity.
|
|
|
|
Thanks for the contribution — please reopen when you're ready to pick it back up. The branch and review history are preserved, so you won't lose any work.
|
|
|
|
remove-stale-when-updated: true
|
|
operations-per-run: 100
|
|
ascending: true
|
|
enable-statistics: true
|