Skip to repository content63 lines · 2.2 KB · yaml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T07:43:50.607Z 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
bump_version.yml
1# Generated from xtask::workflows::extensions::bump_version within the Zed repository.
2# Rebuild with `cargo xtask workflows`.
3name: extensions::bump_version
4on:
5 pull_request:
6 types:
7 - labeled
8 push:
9 branches:
10 - main
11 paths-ignore:
12 - .github/**
13 workflow_dispatch: {}
14permissions: {}
15jobs:
16 determine_bump_type:
17 if: (github.repository_owner == 'zed-industries' || github.repository_owner == 'zed-extensions')
18 runs-on: namespace-profile-2x4-ubuntu-2404
19 permissions: {}
20 steps:
21 - id: get-bump-type
22 name: extensions::bump_version::get_bump_type
23 run: |
24 if [ "$HAS_MAJOR_LABEL" = "true" ]; then
25 bump_type="major"
26 elif [ "$HAS_MINOR_LABEL" = "true" ]; then
27 bump_type="minor"
28 else
29 bump_type="patch"
30 fi
31 echo "bump_type=$bump_type" >> $GITHUB_OUTPUT
32 env:
33 HAS_MAJOR_LABEL: |-
34 ${{ (github.event.action == 'labeled' && github.event.label.name == 'major') ||
35 (github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'major')) }}
36 HAS_MINOR_LABEL: |-
37 ${{ (github.event.action == 'labeled' && github.event.label.name == 'minor') ||
38 (github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'minor')) }}
39 outputs:
40 bump_type: ${{ steps.get-bump-type.outputs.bump_type }}
41 call_bump_version:
42 needs:
43 - determine_bump_type
44 if: github.event.action != 'labeled' || needs.determine_bump_type.outputs.bump_type != 'patch'
45 permissions:
46 actions: write
47 contents: write
48 issues: write
49 pull-requests: write
50 uses: zed-industries/zed/.github/workflows/extension_bump.yml@main
51 secrets:
52 app-id: ${{ secrets.ZED_ZIPPY_APP_ID }}
53 app-secret: ${{ secrets.ZED_ZIPPY_APP_PRIVATE_KEY }}
54 with:
55 bump-type: ${{ needs.determine_bump_type.outputs.bump_type }}
56 force-bump: ${{ github.event_name != 'push' }}
57concurrency:
58 group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.ref_name == 'main' && github.sha || 'anysha' }}labels
59 cancel-in-progress: true
60defaults:
61 run:
62 shell: bash -euxo pipefail {0}
63