Skip to repository content60 lines · 2.0 KB · yaml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T03:28:09.651Z 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
cherry_pick.yml
1# Generated from xtask::workflows::cherry_pick
2# Rebuild with `cargo xtask workflows`.
3name: cherry_pick
4run-name: 'cherry_pick to ${{ inputs.channel }} #${{ inputs.pr_number }}'
5on:
6 workflow_dispatch:
7 inputs:
8 commit:
9 description: commit
10 required: true
11 type: string
12 branch:
13 description: branch
14 required: true
15 type: string
16 channel:
17 description: channel
18 required: true
19 type: string
20 pr_number:
21 description: pr_number
22 required: true
23 type: string
24permissions:
25 contents: read
26jobs:
27 run_cherry_pick:
28 runs-on: namespace-profile-2x4-ubuntu-2404
29 steps:
30 - id: generate-token
31 name: steps::authenticate_as_zippy
32 uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859
33 with:
34 app-id: ${{ secrets.ZED_ZIPPY_APP_ID }}
35 private-key: ${{ secrets.ZED_ZIPPY_APP_PRIVATE_KEY }}
36 owner: ${{ github.repository_owner }}
37 repositories: ${{ github.event.repository.name }}
38 permission-contents: write
39 permission-workflows: write
40 permission-pull-requests: write
41 - name: steps::checkout_repo
42 uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
43 with:
44 clean: false
45 token: ${{ steps.generate-token.outputs.token }}
46 - name: cherry_pick::run_cherry_pick::cherry_pick
47 run: ./script/cherry-pick "$BRANCH" "$COMMIT" "$CHANNEL"
48 env:
49 BRANCH: ${{ inputs.branch }}
50 COMMIT: ${{ inputs.commit }}
51 CHANNEL: ${{ inputs.channel }}
52 GIT_AUTHOR_NAME: zed-zippy[bot]
53 GIT_AUTHOR_EMAIL: 234243425+zed-zippy[bot]@users.noreply.github.com
54 GIT_COMMITTER_NAME: zed-zippy[bot]
55 GIT_COMMITTER_EMAIL: 234243425+zed-zippy[bot]@users.noreply.github.com
56 GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
57defaults:
58 run:
59 shell: bash -euxo pipefail {0}
60