Skip to content

An action to broadcast a message in a repository through issue comments.

Notifications You must be signed in to change notification settings

jenschelkopf/broadcast-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

An action to broadcast a message in a repository through issue comments.

Resources

Stars

Watchers

Forks

Packages

No packages published