mirror of
https://github.com/tofuutils/pre-commit-opentofu.git
synced 2025-10-15 17:38:54 +02:00
Bumps [actions/stale](https://github.com/actions/stale) from 9.1.0 to 10.0.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](5bef64f19d...3a9db7e6a4)
---
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>
32 lines
1.4 KiB
YAML
32 lines
1.4 KiB
YAML
name: "Mark or close stale issues and PRs"
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
# Staling issues and PR's
|
|
days-before-stale: 30
|
|
stale-issue-label: stale
|
|
stale-pr-label: stale
|
|
stale-issue-message: |
|
|
This issue has been automatically marked as stale because it has been open 30 days
|
|
with no activity. Remove stale label or comment or this issue will be closed in 10 days
|
|
stale-pr-message: |
|
|
This PR has been automatically marked as stale because it has been open 30 days
|
|
with no activity. Remove stale label or comment or this PR will be closed in 10 days
|
|
# Not stale if have this labels or part of milestone
|
|
exempt-issue-labels: bug,wip,on-hold,auto-update
|
|
exempt-pr-labels: bug,wip,on-hold
|
|
exempt-all-milestones: true
|
|
# Close issue operations
|
|
# Label will be automatically removed if the issues are no longer closed nor locked.
|
|
days-before-close: 10
|
|
delete-branch: true
|
|
close-issue-message: This issue was automatically closed because of stale in 10 days
|
|
close-pr-message: This PR was automatically closed because of stale in 10 days
|