feat: testing workflows for telegram commits #4
This file contains hidden or 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 – Last 10 Commits (Pretty) | |
| on: | |
| push: | |
| branches: ["**"] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| send: | |
| runs-on: ubuntu-latest | |
| environment: SANDBOX # TG_BOT_TOKEN + TG_CHAT_ID | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 50 | |
| - name: Build message (HTML) | |
| id: msg | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| REPO="${{ github.repository }}" | |
| ACTOR="${{ github.actor }}" | |
| REF_NAME="${{ github.ref_name }}" | |
| RUN_URL="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" | |
| REPO_URL="${{ github.server_url }}/${{ github.repository }}" | |
| COMMIT_BASE="${{ github.server_url }}/${{ github.repository }}/commit" | |
| esc() { sed -e 's/&/\&/g' -e 's/</\</g' -e 's/>/\>/g'; } | |
| mapfile -t LINES < <(git log -n 10 --pretty=format:'%s%x1f%h%x1f%an%x1f%H' || true) | |
| if [[ ${#LINES[@]} -eq 0 ]]; then | |
| COMMITS_HTML="(no commit messages found)" | |
| else | |
| COMMITS_HTML="" | |
| for row in "${LINES[@]}"; do | |
| IFS=$'\x1f' read -r subj short author full <<<"$row" | |
| subj_esc="$(printf '%s' "$subj" | esc)" | |
| author_esc="$(printf '%s' "$author" | esc)" | |
| # bullet line with HTML breaks | |
| COMMITS_HTML+=$'• ' | |
| COMMITS_HTML+="<a href=\"${COMMIT_BASE}/${full}\">${subj_esc}</a> (<code>${short}</code>) by ${author_esc}<br>" | |
| done | |
| fi | |
| HEADER="<b>📣 Last 10 commits</b><br>" | |
| META="Repo: <a href=\"${REPO_URL}\">${REPO}</a><br>By: ${ACTOR}<br>Ref: <code>${REF_NAME}</code><br>Run: <a href=\"${RUN_URL}\">view run</a><br><br>" | |
| FOOTER="<br>Repo: <a href=\"${REPO_URL}\">${REPO_URL}</a>" | |
| MESSAGE="${HEADER}${META}${COMMITS_HTML}${FOOTER}" | |
| { | |
| echo "text<<'EOF'" | |
| echo "$MESSAGE" | |
| echo "EOF" | |
| } >> "$GITHUB_OUTPUT" | |
| - name: Send to Telegram (HTML) | |
| shell: bash | |
| env: | |
| TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }} | |
| TG_CHAT_ID: ${{ secrets.TG_CHAT_ID }} | |
| TEXT: ${{ steps.msg.outputs.text }} | |
| run: | | |
| set -euo pipefail | |
| [[ -n "${TG_BOT_TOKEN:-}" && -n "${TG_CHAT_ID:-}" ]] || { echo "Missing TG secrets"; exit 1; } | |
| curl -sS -X POST "https://api.telegram.org/bot${TG_BOT_TOKEN}/sendMessage" \ | |
| -H 'Content-Type: application/json' \ | |
| -d "$(jq -n \ | |
| --arg chat_id "$TG_CHAT_ID" \ | |
| --arg text "$TEXT" \ | |
| '{chat_id:$chat_id, text:$text, parse_mode:"HTML", disable_web_page_preview:true}')" | |
| echo "✅ Posted to Telegram." |