Skip to content

Commit

Permalink
Create teamsNotification.yml
Browse files Browse the repository at this point in the history
Adding a workflow to use a Github Action to create a Teams notification in the phila.gov dev channel when someone creates a PR.
  • Loading branch information
arminmobasseri authored Dec 16, 2024
1 parent 2dc19e5 commit c3bfa78
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/teamsNotification.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: MS Teams Notification
on: [pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
# this is the new step
- uses: dchourasia/[email protected] # or "./" if in a local set-up
if: always()
with:
github-token: ${{ github.token }}
webhook-uri: ${{ secrets.TEAMS_WEBHOOK_URL }}

0 comments on commit c3bfa78

Please sign in to comment.