Create issue-workflow.yml

This commit is contained in:
Zane Schepke 2024-05-03 22:26:05 -04:00 committed by GitHub
parent 440fe6ceda
commit cbee5cfd1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 21 additions and 0 deletions

21
.github/workflows/issue-workflow.yml vendored Normal file
View File

@ -0,0 +1,21 @@
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 }}