mirror of
https://github.com/linuxserver/github-workflows.git
synced 2026-03-02 00:02:48 +08:00
Bumps [actions/stale](https://github.com/actions/stale) from 6.0.1 to 7.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/v6.0.1...v7.0.0) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
46 lines
1.5 KiB
YAML
46 lines
1.5 KiB
YAML
name: Mark stale issues and pull requests
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
concurrency:
|
|
group: lock
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/stale@v7.0.0
|
|
with:
|
|
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.
|
|
stale-pr-message: This pull request 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.
|
|
stale-issue-label: no-issue-activity
|
|
stale-pr-label: no-pr-activity
|
|
days-before-stale: 30
|
|
days-before-close: 60
|
|
exempt-issue-labels: awaiting-approval,work-in-progress
|
|
exempt-pr-labels: awaiting-approval,work-in-progress
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
lock:
|
|
runs-on: ubuntu-latest
|
|
needs:
|
|
- stale
|
|
|
|
steps:
|
|
- uses: dessant/lock-threads@v4.0.0
|
|
with:
|
|
issue-inactive-days: "30"
|
|
include-any-issue-labels: no-issue-activity
|
|
issue-comment: This issue is locked due to inactivity
|
|
exclude-any-issue-labels: awaiting-approval,work-in-progress
|
|
pr-inactive-days: "30"
|
|
include-any-pr-labels: no-pr-activity
|
|
pr-comment: This pull request is locked due to inactivity
|
|
exclude-any-pr-labels: awaiting-approval,work-in-progress
|