diff --git a/.github/workflows/github-action.yml b/.github/workflows/github-action.yml index 6212d5b..316798d 100644 --- a/.github/workflows/github-action.yml +++ b/.github/workflows/github-action.yml @@ -134,7 +134,7 @@ jobs: chatid: ${{ secrets.TG_GROUP_ID }} message: | πŸ‘‡ζ–°ηš„η‰ˆζœ¬πŸ‘‡ - + ${{needs.set-tag.outputs.tag}} πŸ“¦δ»“εΊ“: ${{ github.repository }} button: true button_name: πŸ‘€δΈ‹θ½½πŸ‘€ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..1dd516e --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,20 @@ +name: telegram message +on: + workflow_dispatch: +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - name: send telegram message on push + uses: appleboy/telegram-action@master + with: + to: ${{ secrets.TG_GROUP_ID }} + token: ${{ secrets.TG_TOKEN }} + message: | + ${{ github.actor }} created commit: + Commit message: ${{ github.event.commits[0].message }} + + Repository: ${{ github.repository }} + + See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}} \ No newline at end of file