im-open / post-status-to-teams-action

A GitHub Action for posting a workflow's status update to Microsoft Teams
MIT License
0 stars 0 forks source link
microsoft-teams swat-team

Post Status to Teams Action

This action will post a status update to Microsoft Teams.

Index

Layout

Default Layout

Layout when include-default-facts is set to false

Inputs

Parameter Is Required Default Description
title true N/A The title of the card posted to Teams.
workflow-status true N/A The status to report. The values success and failure will result in green and red color indicators (respectively) on the Teams Card. Anything else will result in gray.
workflow-type true N/A The type of workflow. Default to Build. The most common types are Build and Deploy, but the value isn't restricted so anything can be used.
teams-uri true N/A The Teams webhook URI where notifications are sent.
custom-facts false '' JSON-parseable string defining a list of objects with name and value to display on the facts table.
custom-actions false '' JSON-parseable string defining a list of objects with name and uri to include in the list of action buttons at the bottom of the card.
timezone false UTC A valid database time zone name, e.g. America/Denver. Defaults to UTC.
environment false '' Name of the environment. Won't be included if none.
fail-on-error false false When set to true will return an exit code 1 should the action fail to send the Teams notification. Default to false.
include-default-facts false true A flag determining whether or not to include the default facts. True and false are the expected values. The default facts are event type, status, and the repository and branch url.

Usage Examples

The most basic example using only the parameters that are required.

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v3

      - name: Send Successful Build Notification
      # You may also reference just the major or major.minor version
        uses: im-open/post-status-to-teams-action@v1.4.1
        with:
          title: Successful build
          workflow-status: success
          workflow-type: Build
          teams-uri: ${{ secrets.MS_TEAMS_URI }}
          timezone: America/Denver

An example of not including the default facts in order to streamline the notification card to the bare minimum information.

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v3

      - name: Send Successful Build Notification
        uses: im-open/post-status-to-teams-action@v1.4.1
        with:
          title: Successful build
          workflow-status: success
          workflow-type: Build
          teams-uri: ${{ secrets.MS_TEAMS_URI }}
          timezone: America/Denver
          include-default-facts: false

This example passes in custom-facts and custom-actions.

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v3

      - name: Send Successful Deploy Notification
        uses: im-open/post-status-to-teams-action@v1.4.1
        with:
          title: Successfully deployed
          workflow-status: success
          workflow-type: Deploy
          teams-uri: ${{ secrets.MS_TEAMS_URI }}
          timezone: America/Denver
          custom-facts: |
            [
              { "name": "Custom Fact", "value": "Number 1" },
              { "name": "Custom Fact", "value": "Number 2" }
            ]
          custom-actions: |
            [
              { "name": "Go to Google", "uri": "https://www.google.com/" }
            ]

Contributing

When creating PRs, please review the following guidelines:

Incrementing the Version

This repo uses git-version-lite in its workflows to examine commit messages to determine whether to perform a major, minor or patch increment on merge if source code changes have been made. The following table provides the fragment that should be included in a commit message to active different increment strategies.

Increment Type Commit Message Fragment
major +semver:breaking
major +semver:major
minor +semver:feature
minor +semver:minor
patch default increment type, no comment needed

Source Code Changes

The files and directories that are considered source code are listed in the files-with-code and dirs-with-code arguments in both the build-and-review-pr and increment-version-on-merge workflows.

If a PR contains source code changes, the README.md should be updated with the latest action version and the action should be recompiled. The build-and-review-pr workflow will ensure these steps are performed when they are required. The workflow will provide instructions for completing these steps if the PR Author does not initially complete them.

If a PR consists solely of non-source code changes like changes to the README.md or workflows under ./.github/workflows, version updates and recompiles do not need to be performed.

Recompiling Manually

This command utilizes esbuild to bundle the action and its dependencies into a single file located in the dist folder. If changes are made to the action's source code, the action must be recompiled by running the following command:

# Installs dependencies and bundles the code
npm run build

Updating the README.md

If changes are made to the action's source code, the usage examples section of this file should be updated with the next version of the action. Each instance of this action should be updated. This helps users know what the latest tag is without having to navigate to the Tags page of the repository. See Incrementing the Version for details on how to determine what the next version will be or consult the first workflow run for the PR which will also calculate the next version.

Code of Conduct

This project has adopted the im-open's Code of Conduct.

License

Copyright © 2024, Extend Health, LLC. Code released under the MIT license.