mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-19 20:01:08 -05:00
22 lines
592 B
YAML
22 lines
592 B
YAML
name: Discord PR Notifier
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request_target:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
notify:
|
|
runs-on: ubuntu-latest
|
|
if: github.head_ref != 'changeset-release/main'
|
|
steps:
|
|
- name: Send Discord Notification
|
|
uses: Ilshidur/action-discord@master
|
|
with:
|
|
args: |
|
|
🚀 **New PR:** ${{ github.event.pull_request.title }}
|
|
🔗 <${{ github.event.pull_request.html_url }}>
|
|
👤 **Author:** ${{ github.event.pull_request.user.login }}
|
|
env:
|
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
|