Skip to content

Commit

Permalink
Move send_release_message.py to examples folder
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielRF committed Jan 5, 2025
1 parent c87c0c8 commit 479186f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/action_release_message.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install Requirements
run: pip install pyTelegramBotAPI
- name: Send Message
run: python send_release_message.py
run: python examples/send_release_message.py
env:
TOKEN: ${{ secrets.TOKEN }}
CHAT_ID: ${{ vars.CHAT_ID }}
Expand Down
5 changes: 5 additions & 0 deletions send_release_message.py → examples/send_release_message.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#!/usr/bin/python

# This is a simple script that sends a message to a defined chat_id using GitHub Actions.
# It was created alongside action_release_message.yml

import telebot
import os

Expand Down

0 comments on commit 479186f

Please sign in to comment.