diff --git a/.github/workflows/new-event.yml b/.github/workflows/new-event.yml new file mode 100644 index 0000000..96d42b1 --- /dev/null +++ b/.github/workflows/new-event.yml @@ -0,0 +1,27 @@ +name: "Issues/PRs Notifier" + +on: + issues: + types: [opened, reopened] + pull_request_target: + types: [opened, reopened] + +concurrency: + group: ${{ github.workflow }}-${{ github.event.issue.number || github.event.pull_request.number }} + cancel-in-progress: true + +permissions: + issues: read + pull-requests: read + +jobs: + notify: + name: "Telegram notification" + runs-on: ubuntu-latest + steps: + - name: "Send Telegram notification for new issue or pull request" + uses: reagento/relator@4b1531359edba1228db0906e8931b0da2aef69cd # v1.7.0 + with: + tg-bot-token: ${{ secrets.TELEGRAM_BOT_TOKEN }} + tg-chat-id: ${{ vars.TELEGRAM_CHAT_ID }} + github-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file