Files
kilocode/.github/workflows/notify-discord.yml
T
Marius Wichtner 04fc8b4e0c fix: replace Blacksmith runners with GitHub-hosted runners
Replace all Blacksmith runner references with standard GitHub-hosted runners:
- blacksmith-4vcpu-ubuntu-2404 → ubuntu-latest
- blacksmith-4vcpu-ubuntu-2404-arm → ubuntu-24.04-arm
- blacksmith-4vcpu-windows-2025 → windows-latest

This enables GitHub Actions to run in the Kilo-Org fork which doesn't have
access to Blacksmith runners.
2026-01-27 20:26:05 +01:00

18 lines
454 B
YAML

name: discord
on:
release:
types: [released] # fires when a draft release is published
jobs:
notify:
# kilocode_change start - disabled for kilo-cli fork (OpenCode Discord notifications)
if: false
# kilocode_change end
runs-on: ubuntu-latest
steps:
- name: Send nicely-formatted embed to Discord
uses: SethCohen/github-releases-to-discord@v1
with:
webhook_url: ${{ secrets.DISCORD_WEBHOOK }}