mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-07-25 06:54:43 +00:00
6627de6460
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>
26 lines
815 B
YAML
26 lines
815 B
YAML
name: 'Close stale issues and PRs'
|
|
on:
|
|
schedule:
|
|
- cron: '30 1 * * *'
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v10
|
|
with:
|
|
stale-issue-message: |
|
|
Hey there!
|
|
|
|
This issue was inactive for a long time and will be automatically closed in 30 days if there isn't any further activity. We therefore assume that the user has lost interest or resolved the problem on their own.
|
|
|
|
Don't worry though; if this is an error, let us know with a comment and we'll be happy to reopen the issue.
|
|
|
|
Thanks!
|
|
stale-issue-label: 'stale'
|
|
exempt-issue-labels: 'enhancement'
|
|
days-before-stale: 180
|
|
days-before-close: 30
|
|
days-before-pr-stale: -1
|
|
operations-per-run: 1000
|