Skip to content

Pr notifications

Pr notifications #2

Workflow file for this run

name: Notify Teams
on:
pull_request:
types: [opened]
branches:
- test-new
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Notify Microsoft Teams
uses: bdougie/send-to-teams-action@v1
with:
webhook_url: ${{ secrets.TEAMS_WEBHOOK_URL }}
message: |
New Pull Request Created!
Repository: ${{ github.repository }}
PR Title: ${{ github.event.pull_request.title }}
Author: ${{ github.event.pull_request.user.login }}
URL: ${{ github.event.pull_request.html_url }}