Update alert-tgchange.yml #6
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
name: 'Telegram Alert' | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
alert: | |
name: 'Alert Groups' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Stat Calculate | |
id: changes | |
run: | | |
git diff-tree --no-commit-id --name-status -r ${{ github.sha }} >> changes.txt | |
git diff --stat ${{ github.sha }} >> stats.txt | |
echo -e "DEBUG: CHANGE\n\n$(cat changes.txt)" | |
echo -e "DEBUG: stats\n\n$(cat changes.txt)" | |
- name: Format Telegram message on push | |
id: format_message | |
run: | | |
FILE_CHANGES=$(cat changes.txt) | |
STATS=$(cat stats.txt) | |
GIT_USER=$(git log -1 --pretty=format:'%an') | |
COMMIT_URL="https://github.com/${{ github.repository }}/commit/${{ github.sha }}" | |
MESSAGE="New Changes on <b><a href='https://github.com/MizProject/super-patch-action>'super-patch-action</a></b>.. <br><br>Authored by: @${GIT_USER}\nCheck changes with <a href='https://github.com/MizProject/super-patch-action/'>main</a>" | |
echo "message=$MESSAGE" >> $GITHUB_OUTPUT | |
- name: Send Telegram message on push | |
uses: appleboy/telegram-action@master | |
with: | |
to: ${{ secrets.TELEGRAM_TO }} | |
token: ${{ secrets.TELEGRAM_TOKEN }} | |
format: html | |
message: ${{ steps.format_message.outputs.message }} | |