Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T01:49:25.046Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

community_close_stale_issues.yml

48 lines · 2.0 KB · yaml
1name: "Close Stale Issues"
2on:
3  schedule:
4    - cron: "0 2 * * 5"
5  workflow_dispatch:
6    inputs:
7      debug-only:
8        description: "Run in dry-run mode (no changes made)"
9        type: boolean
10        default: false
11      operations-per-run:
12        description: "Max number of issues to process (default: 1000)"
13        type: number
14        default: 1000
15
16permissions:
17  contents: read
18
19jobs:
20  stale:
21    if: github.repository_owner == 'zed-industries'
22    runs-on: namespace-profile-2x4-ubuntu-2404
23    permissions:
24      issues: write
25    steps:
26      - uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # v10
27        with:
28          repo-token: ${{ secrets.GITHUB_TOKEN }}
29          stale-issue-message: >
30            Zed development moves fast and a significant number of bugs become outdated.
31            If you can reproduce this bug on the latest stable Zed, please let us know by leaving a comment with the Zed version,
32            it helps us focus on the right issues.
33            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.
34            But even after it's closed by the bot, you can leave a comment **with the version where the bug is reproducible** and we'll reopen the issue.
35            (This bot will only ask about this issue once)
36            Thanks!
37          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."
38          days-before-stale: 90
39          days-before-close: 21
40          only-issue-types: "Bug,Crash"
41          operations-per-run: ${{ inputs.operations-per-run || 2000 }}
42          ascending: true
43          enable-statistics: true
44          debug-only: ${{ inputs.debug-only }}
45          stale-issue-label: "stale"
46          exempt-issue-labels: "never stale"
47          labels-to-add-when-unstale: "never stale"
48
Served at tenant.openagents/omega Member data and write actions are omitted.