Skip to repository content40 lines · 1.2 KB · yaml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T01:41:59.066Z 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
good_first_issue_notifier.yml
1name: Good First Issue Notifier
2
3on:
4 issues:
5 types: [labeled]
6
7permissions:
8 contents: read
9
10jobs:
11 handle-good-first-issue:
12 if: github.event.label.name == '.contrib/good first issue' && github.repository_owner == 'zed-industries'
13 runs-on: namespace-profile-2x4-ubuntu-2404
14
15 steps:
16 - name: Checkout repository
17 uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
18
19 - name: Prepare Discord message
20 id: prepare-message
21 env:
22 ISSUE_TITLE: ${{ github.event.issue.title }}
23 ISSUE_NUMBER: ${{ github.event.issue.number }}
24 ISSUE_URL: ${{ github.event.issue.html_url }}
25 ISSUE_AUTHOR: ${{ github.event.issue.user.login }}
26 run: |
27 MESSAGE="[${ISSUE_TITLE} (#${ISSUE_NUMBER})](<${ISSUE_URL}>)"
28
29 {
30 echo "message<<EOF"
31 echo "$MESSAGE"
32 echo "EOF"
33 } >> "$GITHUB_OUTPUT"
34
35 - name: Discord Webhook Action
36 uses: tsickert/discord-webhook@c840d45a03a323fbc3f7507ac7769dbd91bfb164 # v5.3.0
37 with:
38 webhook-url: ${{ secrets.DISCORD_WEBHOOK_GOOD_FIRST_ISSUE }}
39 content: ${{ steps.prepare-message.outputs.message }}
40