You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add MS_TEAMS_WEBHOOK_URI on your repository's configs on Settings > Secrets. See webhook URI for further information
Add a new step on your workflow code as first or last step of workflow job:
name: Github Action for Microsoft Teamson: [push]jobs:
build:
runs-on: ubuntu-lateststeps:
- uses: actions/checkout@v2
- uses: synchealthlabs/github-action-teams@mainif: always() # to let this step always run even if previous step failedwith:
github-token: ${{ github.token }}webhook-uri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }}position: start # or finishstatus: ${{ job.status }}