Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.08 KB

README.md

File metadata and controls

31 lines (23 loc) · 1.08 KB

GitHub Action - Broadcast Message

This GtiHub Action allows you to broadcast a message through issue comments. It's helpful when you need to comment on many different issues.

The action is intended to work with the workflow_dispatch event.

Screen Shot 2020-07-22 at 3 40 34 PM

An optional 'labels' input lets you target a subset of issues.

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.

Example workflow

name: Broadcast a message across multiple issues
on: 
  workflow_dispatch:
    inputs:
      message:
        required: false
      labels:
        required: false

jobs:
  broadcast:
    runs-on: ubuntu-latest
    steps:
        - uses: jenschelkopf/broadcast-action@master