This action was forked from https://github.com/jenschelkopf/project-card-moved-notification-action This GitHub Action allows you to notify an issue's assignee when its corresponding project card moves between columns.
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.
assigneeFilter
: Optional. A comma separated list of usernames to notify when an issue they are assigned to moves between project columns.
name: Notify assignees when their card moves between columns
on:
project_card:
types: [moved]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- uses: zheng-jj/project-card-moved-notification-action@DevOpsV6