mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 14:20:35 +00:00
It will run weekly and it promised not to touch issues of the wrong types anymore. Release Notes: - N/A
40 lines
1.6 KiB
YAML
40 lines
1.6 KiB
YAML
name: "Close Stale Issues"
|
|
on:
|
|
schedule:
|
|
- cron: "0 2 * * 5"
|
|
workflow_dispatch:
|
|
inputs:
|
|
debug-only:
|
|
description: "Run in dry-run mode (no changes made)"
|
|
type: boolean
|
|
default: false
|
|
operations-per-run:
|
|
description: "Max number of issues to process (default: 1000)"
|
|
type: number
|
|
default: 1000
|
|
|
|
jobs:
|
|
stale:
|
|
if: github.repository_owner == 'zed-industries'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # v10
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-issue-message: >
|
|
Hi there!
|
|
Zed development moves fast and a significant number of bugs become outdated.
|
|
If you can reproduce this bug on the latest stable Zed, please let us know by leaving a comment with the Zed version.
|
|
If the bug doesn't appear for you anymore, feel free to close the issue yourself; otherwise, the bot will close it in a couple of weeks.
|
|
|
|
Thanks for your help!
|
|
close-issue-message: "This issue was closed due to inactivity. If you're still experiencing this problem, please leave a comment with your Zed version so that we can reopen the issue."
|
|
days-before-stale: 60
|
|
days-before-close: 14
|
|
only-issue-types: "Bug,Crash"
|
|
operations-per-run: ${{ inputs.operations-per-run || 1000 }}
|
|
ascending: true
|
|
enable-statistics: true
|
|
debug-only: ${{ inputs.debug-only }}
|
|
stale-issue-label: "stale"
|
|
exempt-issue-labels: "never stale"
|