Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T03:30:18.853Z 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

update_duplicate_magnets.yml

36 lines · 922 B · yaml
1name: Update Duplicate Magnets Issue
2
3on:
4  schedule:
5    - cron: "0 6 * * 1,4" # Mondays and Thursdays at 6 AM UTC
6  workflow_dispatch:
7
8permissions:
9  contents: read
10
11jobs:
12  update-duplicate-magnets:
13    runs-on: ubuntu-latest
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
21      - name: Set up Python
22        uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
23        with:
24          python-version: "3.12"
25
26      - name: Install dependencies
27        run: pip install requests
28
29      - name: Update duplicate magnets issue
30        env:
31          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32        run: |
33          python script/github-find-top-duplicated-bugs.py \
34            --github-token "$GITHUB_TOKEN" \
35            --issue-number 46355
36
Served at tenant.openagents/omega Member data and write actions are omitted.