mirror of
https://github.com/WeblateOrg/weblate.git
synced 2026-07-26 14:23:58 +08:00
38 lines
953 B
YAML
Vendored
38 lines
953 B
YAML
Vendored
# Copyright © Michal Čihař <michal@weblate.org>
|
||
#
|
||
# SPDX-License-Identifier: CC0-1.0
|
||
|
||
name: 'Issues: Close stale'
|
||
|
||
on:
|
||
schedule:
|
||
- cron: 30 1 * * *
|
||
push:
|
||
branches:
|
||
- main
|
||
paths:
|
||
- .github/workflows/issue-stale.yml
|
||
|
||
permissions:
|
||
issues: write
|
||
|
||
jobs:
|
||
stale-issues:
|
||
runs-on: ubuntu-slim
|
||
|
||
steps:
|
||
- uses: actions/stale@1e223db275d687790206a7acac4d1a11bd6fe629 # v10.4.0
|
||
with:
|
||
days-before-pr-stale: -1
|
||
days-before-pr-close: -1
|
||
days-before-stale: 14
|
||
days-before-close: 5
|
||
only-labels: 'Waiting for: Community'
|
||
stale-issue-label: wontfix
|
||
repo-token: ${{ secrets.GITHUB_TOKEN }} # zizmor: ignore[secrets-outside-env]
|
||
stale-issue-message: |
|
||
This issue has been automatically marked as stale because there wasn’t any recent activity.
|
||
|
||
It will be closed soon if no further action occurs.
|
||
|
||
Thank you for your contributions!
|