mirror of
https://github.com/wgtunnel/android.git
synced 2026-07-03 14:07:49 +02:00
54d9653f04
Fixes a bug where mobile data tunneling was not working properly in certain scenarios. Fixes an issue where the new floating action button was not working correctly on AndroidTV. Improved local logging. Additional refactors and optimizations.
21 lines
693 B
YAML
21 lines
693 B
YAML
name: Issue Updates Workflow
|
|
|
|
on:
|
|
issues:
|
|
types: [ opened, closed, reopened ]
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Send Telegram Message
|
|
run: |
|
|
msg_text='${{ github.actor }} updated an issue:
|
|
status: ${{ github.event.issue.state }} - #${{ github.event.issue.number }} ${{ github.event.issue.title }}
|
|
https://github.com/zaneschepke/wgtunnel/issues/${{ github.event.issue.number }}'
|
|
curl -s -X POST 'https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendMessage' \
|
|
-d "chat_id=${{ secrets.TELEGRAM_TO }}&text=${msg_text}&message_thread_id=${{ secrets.TELEGRAM_TOPIC }}"
|