Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T00:33:12.240Z 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

bump_collab_staging.yml

29 lines · 754 B · yaml
1name: Bump collab-staging Tag
2
3on:
4  schedule:
5    # Fire every day at 16:00 UTC (At the start of the US workday)
6    - cron: "0 16 * * *"
7
8permissions:
9  contents: read
10
11jobs:
12  update-collab-staging-tag:
13    if: github.repository_owner == 'zed-industries'
14    runs-on: namespace-profile-2x4-ubuntu-2404
15    permissions:
16      contents: write
17    steps:
18      - name: Checkout repository
19        uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
20        with:
21          fetch-depth: 0
22
23      - name: Update collab-staging tag
24        run: |
25          git config user.name github-actions
26          git config user.email github-actions@github.com
27          git tag -f collab-staging
28          git push origin collab-staging --force
29
Served at tenant.openagents/omega Member data and write actions are omitted.