diff --git a/.github/workflows/test_action.yaml b/.github/workflows/test_action.yaml deleted file mode 100644 index 7e4b1c8..0000000 --- a/.github/workflows/test_action.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: Send message -on: - workflow_dispatch: - push: - branches: - - main - tags: - - 'v*' - -jobs: - send: - name: Checkout and send message - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Send message - uses: yamaks2306/telegram-notification@main - if: always() - with: - chat_id: ${{ secrets.TG_CHAT_ID }} - token: ${{ secrets.TG_TOKEN }} -