Files
sencho/.github/workflows/stale.yml
T
dependabot[bot] 754d8af8f8 chore(deps): bump the all-actions group across 1 directory with 2 updates (#1732)
Bumps the all-actions group with 2 updates in the / directory: [docker/login-action](https://github.com/docker/login-action) and [actions/stale](https://github.com/actions/stale).


Updates `docker/login-action` from 4.4.0 to 4.6.0
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](https://github.com/docker/login-action/compare/af1e73f918a031802d376d3c8bbc3fe56130a9b0...dbcb813823bdd20940b903addbd779551569679f)

Updates `actions/stale` from 10.4.0 to 11.0.0
- [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/1e223db275d687790206a7acac4d1a11bd6fe629...4391f3da665fdf50b6810c1a66712fb9ba21aa93)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-actions
- dependency-name: actions/stale
  dependency-version: 11.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-07-29 12:29:46 -04:00

49 lines
1.7 KiB
YAML

name: Stale Issues and Pull Requests
# Marks issues and PRs as stale after 60 days of inactivity and closes
# them 14 days after that unless re-engaged. Keeps the issue tracker
# focused on actionable work without losing real bugs: anything labeled
# pinned, security, bug, or tracking is exempt and never auto-closed.
on:
schedule:
# Daily at 01:30 UTC. Off-peak for the GitHub Actions stale runner.
- cron: '30 1 * * *'
workflow_dispatch:
permissions:
issues: write
pull-requests: write
concurrency:
group: stale
cancel-in-progress: false
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@4391f3da665fdf50b6810c1a66712fb9ba21aa93 # v11.0.0
with:
days-before-stale: 60
days-before-close: 14
stale-issue-label: stale
stale-pr-label: stale
exempt-issue-labels: 'pinned,security,bug,tracking'
exempt-pr-labels: 'pinned,security'
stale-issue-message: >
This issue has had no activity for 60 days and will be closed in
14 days unless someone replies. Add a comment or remove the stale
label to keep it open.
close-issue-message: >
Closing for inactivity. Reopen if this is still relevant.
stale-pr-message: >
This pull request has had no activity for 60 days and will be
closed in 14 days unless updated. Push a new commit or remove the
stale label to keep it open.
close-pr-message: >
Closing for inactivity. Reopen and rebase if you want to continue.
# Process up to 30 items per run to stay within the action's rate
# budget; running daily covers the steady state easily.
operations-per-run: 30