Skip to repository content34 lines · 1.1 KB · yaml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T01:46:20.233Z 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
community_update_weekly_top_ranking_issues.yml
1name: Update Weekly Top Ranking Issues
2
3on:
4 schedule:
5 - cron: "0 15 * * *"
6 workflow_dispatch:
7
8permissions:
9 contents: read
10
11jobs:
12 update_top_ranking_issues:
13 runs-on: namespace-profile-2x4-ubuntu-2404
14 if: github.repository == 'zed-industries/zed'
15 permissions:
16 contents: read
17 issues: write
18 steps:
19 - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
20 - name: Set up uv
21 uses: astral-sh/setup-uv@caf0cab7a618c569241d31dcd442f54681755d39 # v3
22 with:
23 version: "latest"
24 enable-cache: true
25 cache-dependency-glob: "script/update_top_ranking_issues/pyproject.toml"
26 - name: Install Python 3.13
27 run: uv python install 3.13
28 - name: Install dependencies
29 run: uv sync --project script/update_top_ranking_issues -p 3.13
30 - name: Run script
31 env:
32 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33 run: uv run --project script/update_top_ranking_issues script/update_top_ranking_issues/main.py --github-token "$GITHUB_TOKEN" --issue-reference-number 6952 --query-day-interval 7
34