Skip to repository content63 lines · 2.0 KB · yaml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T01:49:28.060Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
guild_stale_assignments.yml
1# Scheduled sweep of the Guild board (https://github.com/orgs/zed-industries/projects/74).
2# For an "In Progress" issue assigned to a guild member with no linked PR: post a
3# check-in comment once the assignee goes quiet, re-nudging after any renewed
4# silence, and clear the assignment (moving the issue back to a To-Do column by
5# Type) if a check-in goes unanswered. The "guild hold" label pauses the sweep.
6
7name: Guild Stale Assignments
8
9on:
10 schedule:
11 - cron: "0 8 * * *"
12 workflow_dispatch:
13
14permissions:
15 contents: read
16
17concurrency:
18 group: guild-stale-assignments
19 cancel-in-progress: true
20
21jobs:
22 sweep:
23 if: github.repository == 'zed-industries/zed'
24 runs-on: namespace-profile-2x4-ubuntu-2404
25 timeout-minutes: 15
26
27 steps:
28 - name: Generate app token
29 id: app-token
30 uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
31 with:
32 app-id: ${{ secrets.ZED_COMMUNITY_BOT_APP_ID }}
33 private-key: ${{ secrets.ZED_COMMUNITY_BOT_PRIVATE_KEY }}
34 owner: zed-industries
35 repositories: zed
36 permission-issues: write
37 permission-members: read
38 permission-organization-projects: write
39 permission-pull-requests: read
40
41 - name: Checkout repository
42 uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
43 with:
44 sparse-checkout: |
45 script/github-guild-board.py
46 sparse-checkout-cone-mode: false
47
48 - name: Set up Python
49 uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
50 with:
51 python-version: "3.12"
52
53 - name: Install dependencies
54 run: pip install requests
55
56 - name: Sweep stale assignments
57 env:
58 GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
59 PROJECT_NUMBER: "74"
60 GUILD_MODE: stale
61 SLACK_WEBHOOK_GUILD_INTERNAL: ${{ secrets.SLACK_WEBHOOK_GUILD_INTERNAL }}
62 run: python script/github-guild-board.py
63