mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-09-21 05:52:35 +08:00
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.
18 lines
454 B
YAML
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 }}
|