A GitHub Action to comment on the relevant open PR when a commit is pushed.
Find a file
2019-11-13 23:24:44 -05:00
action.yml Add action.yml manifest 2019-09-25 15:54:51 +01:00
Dockerfile Add repo and maintainer labels to Dockerfile. 2019-05-24 10:20:14 -05:00
entrypoint.sh Support pull_request event types 2019-11-13 23:24:44 -05:00
LICENSE Add license and readme. 2019-05-24 10:48:10 -05:00
README.md update readme for new workflow syntax 2019-09-25 16:00:08 +01:00

Comment on PR via GitHub Action

A GitHub action to comment on the relevant open PR when a commit is pushed.

Usage

  • Requires the GITHUB_TOKEN secret.
  • Requires the comment's message in the msg parameter.

Sample workflow

name: comment-on-pr example
on: pull_request
jobs:
  example:
    name: sample comment
    runs-on: ubuntu-latest
    steps:
      - name: comment PR
        uses: unsplash/comment-on-pr@master
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        with:
          msg: "Check out this message!"