Bumps [actions/stale](https://github.com/actions/stale) from 9.0.0 to 10.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/v9.0.0...v10.0.0) --- updated-dependencies: - dependency-name: actions/stale dependency-version: 10.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
788 B
YAML
27 lines
788 B
YAML
---
|
|
# yamllint disable rule:truthy
|
|
name: Stale
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 * * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 30 days stale issues
|
|
uses: actions/stale@v10.0.0
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
days-before-issue-stale: 30
|
|
days-before-issue-close: 7
|
|
operations-per-run: 150
|
|
remove-stale-when-updated: true
|
|
stale-issue-label: "stale"
|
|
exempt-issue-labels: "pinned,security,Help wanted"
|
|
stale-issue-message: >
|
|
This issue has been automatically marked as stale because it has
|
|
not had recent activity. It will be closed if no further activity
|
|
occurs. Thank you for your contributions. |