Skip to content

Broadcast a message through issue comments

Actions
Send a message through issue comments
1.0
Latest
Star (2)

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

Broadcast a message through issue comments is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Send a message through issue comments
1.0
Latest

Broadcast a message through issue comments is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.