uses: mshick/add-pr-comment@v2
Find a file
2020-04-08 16:58:43 -07:00
.github/workflows feat: allowing action to run on non PR triggers 2020-04-08 16:39:41 -07:00
dist fix: proper response parsing 2020-04-08 16:56:30 -07:00
docs chore: add a sample of a github context 2020-04-08 16:58:43 -07:00
.eslintrc.json initial commit 2019-11-22 17:12:31 -05:00
.gitignore initial commit 2019-11-22 17:12:31 -05:00
action.yml feat: allowing action to run on non PR triggers 2020-04-08 16:39:41 -07:00
index.js fix: proper response parsing 2020-04-08 16:56:30 -07:00
LICENSE initial commit 2019-11-22 17:12:31 -05:00
package-lock.json feat: allowing action to run on non PR triggers 2020-04-08 16:39:41 -07:00
package.json feat: allowing action to run on non PR triggers 2020-04-08 16:39:41 -07:00
README.md some use cases 2019-11-25 18:23:35 -05:00

add-pr-comment

A GitHub Action which adds a comment to a Pull Request Issue.

Usage

uses: mshick/add-pr-comment@v1
with:
  message: |
    **Hello**
    🌏
    !
  repo-token: ${{ secrets.GITHUB_TOKEN }}
  allow-repeats: false

Features

  • Fast, runs in the GitHub Actions node.js runtime; no Docker pull needed.
  • Multiple posts of the same comment optionally allowable.
  • Supports emoji 😂😂😂!

Use Case

  • Adding a deployed app URL to a PR issue
  • Printing some sort of output to the PR issue for human-readability