Skip to repository content61 lines · 1.8 KB · yaml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T00:33:47.560Z 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_weekly_shipped.yml
1# Scheduled Slack digest of Guild board
2# (https://github.com/orgs/zed-industries/projects/74) issues recently closed by
3# a merged PR authored by a guild member.
4
5name: Guild Weekly Shipped
6
7on:
8 schedule:
9 - cron: "0 7 * * 3"
10 workflow_dispatch:
11
12permissions:
13 contents: read
14
15concurrency:
16 group: guild-weekly-shipped
17 cancel-in-progress: true
18
19jobs:
20 digest:
21 if: github.repository == 'zed-industries/zed'
22 runs-on: namespace-profile-2x4-ubuntu-2404
23 timeout-minutes: 15
24
25 steps:
26 - name: Generate app token
27 id: app-token
28 uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
29 with:
30 app-id: ${{ secrets.ZED_COMMUNITY_BOT_APP_ID }}
31 private-key: ${{ secrets.ZED_COMMUNITY_BOT_PRIVATE_KEY }}
32 owner: zed-industries
33 repositories: zed
34 permission-issues: read
35 permission-members: read
36 permission-organization-projects: read
37 permission-pull-requests: read
38
39 - name: Checkout repository
40 uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
41 with:
42 sparse-checkout: |
43 script/github-guild-board.py
44 sparse-checkout-cone-mode: false
45
46 - name: Set up Python
47 uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
48 with:
49 python-version: "3.12"
50
51 - name: Install dependencies
52 run: pip install requests
53
54 - name: Build and send digest
55 env:
56 GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
57 PROJECT_NUMBER: "74"
58 GUILD_MODE: weekly
59 SLACK_WEBHOOK_GUILD_INTERNAL: ${{ secrets.SLACK_WEBHOOK_GUILD_INTERNAL }}
60 run: python script/github-guild-board.py
61