wgtunnel/.github/workflows/issue-workflow.yml

22 lines
527 B
YAML
Raw Normal View History

2024-05-03 22:26:05 -04:00
name: Issue Updates Workflow
on:
issues:
types: [opened, closed, reopened]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: send telegram message on push
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
message: |
${{ github.actor }} updated an issue:
${{ github.event.issue.state }}: ${{ github.event.issue.number }} ${{ github.event.issue.title }}