-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.yml
37 lines (37 loc) · 918 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: "Rust Telegram Notify Action"
description: "Sends notifications to Telegram from GitHub Actions"
author: "Ivan Ashikhmin"
inputs:
token:
description: "Telegram Bot Token"
required: true
chat_id:
description: "Chat ID to send the notification"
required: true
thread_id:
description: "Thread ID (optional)"
required: false
status:
description: "Status of the workflow (e.g., success, failure)"
required: true
title:
description: "Title text"
required: false
message:
description: "Message text"
required: false
footer:
description: "Footer text"
required: false
notify_fields:
description: "Additional fields"
required: false
outputs:
notify_result:
description: "Result of the notification"
runs:
using: "docker"
image: "docker://ghcr.io/prodreams/actions-telegram-notifier:latest"
branding:
icon: "send"
color: "blue"