mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
Bumps [actions/stale](https://github.com/actions/stale) from 10.1.1 to 10.2.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](997185467f...b5d41d4e1d)
---
updated-dependencies:
- dependency-name: actions/stale
dependency-version: 10.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
65 lines
2.6 KiB
YAML
65 lines
2.6 KiB
YAML
#
|
|
# Copyright (C) 2024 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
name: stale
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "5 0 * * *"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
stale:
|
|
permissions:
|
|
issues: write # for actions/stale to close stale issues
|
|
pull-requests: write # for actions/stale to close stale PRs
|
|
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
# Please refer to https://github.com/actions/stale/
|
|
# limit to 1000 operations per run
|
|
operations-per-run: 1000
|
|
days-before-issue-stale: 180
|
|
days-before-issue-close: 30
|
|
stale-issue-label: lifecycle/stale
|
|
exempt-issue-labels: lifecycle/frozen
|
|
stale-issue-message: >
|
|
This issue has been automatically marked as stale because it has not had
|
|
activity in the last 6 months. It will be closed in 30 days if no further activity occurs. Please
|
|
feel free to leave a comment if you believe the issue is still relevant.
|
|
Thank you for your contributions!
|
|
close-issue-message: >
|
|
This issue has been automatically closed because it has not had any further
|
|
activity in the last 30 days. Thank you for your contributions!
|
|
days-before-pr-stale: 180
|
|
days-before-pr-close: 14
|
|
stale-pr-label: lifecycle/stale
|
|
exempt-pr-labels: lifecycle/frozen
|
|
stale-pr-message: >
|
|
This pull request has been automatically marked as stale because it has not had
|
|
activity in the last 6 months. It will be closed in 2 weeks if no further activity occurs. Please
|
|
feel free to give a status update or ping for review. Thank you for your contributions!
|
|
close-pr-message: >
|
|
This pull request has been automatically closed because it has not had any further
|
|
activity in the last 2 weeks. Thank you for your contributions!
|
|
remove-stale-when-updated: true
|