nostros/.github/workflows/notify.yml
2022-11-02 09:02:36 +00:00

16 lines
395 B
YAML

name: Post changelog
on:
release:
types: released
jobs:
post-changelog:
runs-on: ubuntu-latest
steps:
- name: Send changelog to telegram channel
uses: tyagdit/release-telegram-action@master
with:
token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
channel: ${{ secrets.CHANGELOG_CHANNEL_ID }}
changelog: ${{ github.event.release.body }}