mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
e6a6d0124b
Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/stale 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> Co-authored-by: Frederic Werner <20406381+wernerfred@users.noreply.github.com>
24 lines
719 B
YAML
24 lines
719 B
YAML
name: "Close Stale Issues"
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 1 * * *"
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Close stale issues
|
|
uses: actions/stale@v4
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
days-before-stale: 20
|
|
days-before-close: 10
|
|
stale-issue-label: "meta/stale"
|
|
close-issue-label: "meta/closed due to age or inactivity"
|
|
stale-issue-message: >
|
|
This issue has become stale because it has been open for 20 days without
|
|
activity. Remove the label and comment or this issue will be closed in 10 days.
|
|
close-issue-message: >
|
|
This issue was closed due to inactivity.
|