mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-15 23:59:08 +00:00
Some checks failed
🤖 Android APK Build / 🏗️ Build Android APK (push) Has been cancelled
🤖 iOS IPA Build / 🏗️ Build iOS IPA (push) Has been cancelled
🔒 Lockfile Consistency Check / 🔍 Check bun.lock and package.json consistency (push) Has been cancelled
🛡️ CodeQL Analysis / 🔎 Analyze with CodeQL (javascript-typescript) (push) Has been cancelled
🏷️🔀Merge Conflict Labeler / 🏷️ Labeling Merge Conflicts (push) Has been cancelled
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
24 lines
801 B
YAML
24 lines
801 B
YAML
name: 🛎️ Discord Pull Request Notification
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened]
|
|
branches: [develop]
|
|
|
|
jobs:
|
|
notify:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: 🛎️ Notify Discord
|
|
uses: Ilshidur/action-discord@d2594079a10f1d6739ee50a2471f0ca57418b554 # 0.4.0
|
|
env:
|
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
|
DISCORD_AVATAR: https://avatars.githubusercontent.com/u/193271640
|
|
with:
|
|
args: |
|
|
📢 New Pull Request in **${{ github.repository }}**
|
|
**Title:** ${{ github.event.pull_request.title }}
|
|
**By:** ${{ github.event.pull_request.user.login }}
|
|
**Branch:** ${{ github.event.pull_request.head.ref }}
|
|
🔗 ${{ github.event.pull_request.html_url }}
|