mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 04:11:10 -05:00
21 lines
557 B
YAML
21 lines
557 B
YAML
name: Discord PR Notifier
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
notify:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Send Discord Notification
|
|
uses: Ilshidur/action-discord@master
|
|
with:
|
|
args: |
|
|
🚀 **New Pull Request Opened!**
|
|
📝 **Title:** ${{ github.event.pull_request.title }}
|
|
🔗 <${{ github.event.pull_request.html_url }}>
|
|
👤 **Author:** ${{ github.event.pull_request.user.login }}
|
|
env:
|
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
|