mirror of
https://code.gri.mw/GUI/grim.git
synced 2026-07-04 05:57:29 +00:00
149555cc0a
- Separate runner for Windows build - Create .msi release format Reviewed-on: https://code.gri.mw/GUI/grim/pulls/49
29 lines
799 B
YAML
29 lines
799 B
YAML
name: Pull Request
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- closed
|
|
- opened
|
|
|
|
jobs:
|
|
notify:
|
|
runs-on: debian-release
|
|
|
|
steps:
|
|
- name: Telegram Notify Channel
|
|
uses: actions/telegram-notifier@main
|
|
with:
|
|
api_url: ${{ secrets.TELEGRAM_API_URL }}
|
|
token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
|
|
chat_id: ${{ secrets.TELEGRAM_CHANNEL_ID }}
|
|
status: ${{ job.status }}
|
|
notify_fields: "actor,repository"
|
|
- name: Telegram Notify Group
|
|
uses: actions/telegram-notifier@main
|
|
with:
|
|
api_url: ${{ secrets.TELEGRAM_API_URL }}
|
|
token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
|
|
chat_id: ${{ secrets.TELEGRAM_GROUP_ID }}
|
|
status: ${{ job.status }}
|
|
notify_fields: "actor,repository" |