fix: package.json & package-lock.json to reduce vulnerabilities #174
This file contains 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 message | |
on: [push] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: send custom message with args | |
uses: appleboy/telegram-action@master | |
with: | |
to: ${{ secrets.TELEGRAM_TO }} | |
token: ${{ secrets.SWAGGY_KEY }} | |
args: "There is a new change to the Hacktoberfest Swag List: [${{ github.event.head_commit.message }}]! 🎉🎉🎉. Check out the latest updates here: https://hacktoberfest-swaglist.netlify.app/ \n Github Link: https://github.com/monizb/hacktoberfest-swag-list" | |
disable_web_page_preview: "True" | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it |