/project-card-moved-notification-action

Action to notify an issue's assignee if its card is moved between project columns

Primary LanguageJavaScript

GitHub Action - Project Card Moved Notifications

This GitHub Action allows you to notify an issue's assignee when its corresponding project card moves between columns.

Screen Shot 2020-07-13 at 1 56 38 PM

Usage

Pre-requisites

Create a workflow .yml file in your repositories .github/workflows directory. An example workflow is available below. For more information, reference the GitHub Help Documentation for Creating a workflow file.

Inputs

  • assigneeFilter: Optional. A comma separated list of usernames to notify when an issue they are assigned to moves between project columns.

Example workflow

name: Notify assignees when their card moves between columns

on:
  project_card:
      types: [moved]

jobs:
  notify:
    runs-on: ubuntu-latest
    steps:
        - uses: jenschelkopf/project-card-moved-notification@1.0