-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added Telegram notification step to the action
- Loading branch information
1 parent
a844e35
commit 1e7d6ce
Showing
1 changed file
with
31 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,11 @@ | |
name: "Storm Software - Notification" | ||
description: "A composite action configuration used across many Storm Software repos to setup: checkout, Node.js, a package manager, and npm registry configuration." | ||
author: "sullivanpj" | ||
|
||
branding: | ||
icon: "speaker" | ||
color: "gray-dark" | ||
|
||
inputs: | ||
title: | ||
description: Text to display in the notification | ||
|
@@ -22,21 +27,27 @@ inputs: | |
description: Status to display in the notification | ||
required: true | ||
default: "In Progress" | ||
slackToken: | ||
description: The github username of the Storm bot | ||
slack-token: | ||
description: The Slack token used by the bot | ||
required: true | ||
telegram-token: | ||
description: The Telegram token used by the bot | ||
required: true | ||
discordWebhook: | ||
telegram-chat: | ||
description: The Telegram chat used by the bot | ||
required: true | ||
discord-webhook: | ||
description: The github username of the Storm bot | ||
required: true | ||
stormBot: | ||
storm-bot: | ||
description: The github username of the Storm bot | ||
required: false | ||
default: "Stormie-Bot" | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Send Slack notification - Deployment started | ||
- name: Send Slack notification | ||
uses: slackapi/[email protected] | ||
with: | ||
channel-id: "notifications" | ||
|
@@ -58,14 +69,24 @@ runs: | |
] | ||
} | ||
env: | ||
SLACK_BOT_TOKEN: ${{ inputs.slackToken }} | ||
SLACK_BOT_TOKEN: ${{ inputs.slack-token }} | ||
|
||
- name: Send Discord notification - Deployment started | ||
- name: Send Discord notification | ||
uses: Ilshidur/action-discord@master | ||
with: | ||
args: "${{ inputs.title }}" | ||
args: ${{ inputs.title }} | ||
env: | ||
DISCORD_WEBHOOK: ${{ inputs.discordWebhook }} | ||
DISCORD_USERNAME: ${{ inputs.stormBot }} | ||
DISCORD_WEBHOOK: ${{ inputs.discord-webhook }} | ||
DISCORD_USERNAME: ${{ inputs.storm-bot }} | ||
DISCORD_AVATAR: "https://pub-761b436209f44a4d886487c917806c08.r2.dev/icon-stormie.png" | ||
DISCORD_EMBEDS: '[{"title": "${{ inputs.subtitle }}", "description": "${{ inputs.description }}", "thumbnail": { "url": "https://pub-761b436209f44a4d886487c917806c08.r2.dev/icon-fill.png" }, "image": { "url": "https://pub-761b436209f44a4d886487c917806c08.r2.dev/logo-fill.png" }, "author": { "name": "${{ github.actor }}", "url": "https://github.com/${{ github.actor }}", "icon_url": "https://avatars.githubusercontent.com/u/${{ github.actor_id }}?v=4" }, "fields": [ { "name": "Repository", "value": "${{ github.repository }}" }, { "name": "Repository URL", "value": "${{ github.repositoryUrl }}" }, { "name": "Pipeline Status", "value": "${{ inputs.status }}" }], "color": ${{ inputs.color }}, "timestamp": "${{ github.event.repository.updated_at }}", "url": "${{ github.event.pull_request.html_url || github.event.head_commit.url }}", "footer": { "text": "Click here to see the full workflow details: ${{ github.event.pull_request.html_url || github.event.head_commit.url }}", "icon_url": "https://pub-761b436209f44a4d886487c917806c08.r2.dev/icon-fill.png" } }]' | ||
|
||
- name: Send Telegram notification | ||
uses: storm-software/action-telegram-notify@main | ||
with: | ||
status: ${{ inputs.status }} | ||
token: ${{ inputs.telegram-token }} | ||
chat: ${{ inputs.telegram-chat }} | ||
env: | ||
TELEGRAM_TOKEN: ${{ inputs.telegram-token }} | ||
TELEGRAM_CHAT: ${{ inputs.telegram-chat }} |