mirror of
https://github.com/nginx/nginx.git
synced 2026-05-13 17:46:53 +00:00
To avoid future churn give the workflow a generic name, don't operate on pull-requests, and extend the issues stale date to 365 days and update its message.
27 lines
812 B
YAML
27 lines
812 B
YAML
name: Mark Stale
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '22 2 * * *' # Run every day at 02:22
|
|
|
|
env:
|
|
STALE_DAYS: 365
|
|
|
|
jobs:
|
|
mark_stale:
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
actions: write
|
|
issues: write
|
|
|
|
name: Mark stale
|
|
steps:
|
|
- uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10
|
|
with:
|
|
stale-issue-message: "This issue has been automatically marked 'stale' because it has been inactive for **${{ env.STALE_DAYS }}** days.
|
|
|
|
If you feel this issue still needs addressing, please leave an (optional) comment and remove the 'stale' label, otherwise please close it if it is no longer valid. Thank you."
|
|
days-before-stale: ${{ env.STALE_DAYS }}
|
|
days-before-pr-stale: -1
|
|
days-before-close: -1
|
|
stale-issue-label: stale
|