@purpleschool/rugpt-lib-common 0.0.59 → 0.0.61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purpleschool/rugpt-lib-common",
3
- "version": "0.0.59",
3
+ "version": "0.0.61",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -1,30 +0,0 @@
1
- name: Telegram Notification Template
2
-
3
- on:
4
- workflow_call:
5
- inputs:
6
- message:
7
- required: true
8
- type: string
9
- status:
10
- required: false
11
- type: string
12
- default: 'info'
13
- secrets:
14
- TELEGRAM_CHAT_ID:
15
- required: true
16
- TELEGRAM_TOKEN:
17
- required: true
18
-
19
- jobs:
20
- notify:
21
- runs-on: self-hosted
22
- steps:
23
- - name: Send Telegram notification
24
- uses: appleboy/telegram-action@master
25
- with:
26
- to: ${{ secrets.TELEGRAM_CHAT_ID }}
27
- token: ${{ secrets.TELEGRAM_TOKEN }}
28
- format: html
29
- message: |
30
- ${{ inputs.message }}