PR Comment and Update from File
ActionsLeaves a comment on an open PR based on the contents of a file. If a comment with the right prefix exists, update
instead
1.0.2
LatestPre-releaseBy fuzzbuzz
Tags
(1)A GitHub action that will comment on the relevant open PR with a file contents when a commit is pushed. If the action has already commented on the PR, an update to the previous comment will be made instead.
Based off of PR Comment Action by Alexander Matheson.
- Requires the
GITHUB_TOKEN
secret. - Requires the comment's artifact in the
msg
parameter. - Requires a comment prefix in the
prefix
parameter. Comments with the prefix will be subsequently updated if the action is run again. - Supports
push
andpull_request
event types.
name: example
on: pull_request
jobs:
example:
name: example
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: mkdir -p output/
- run: echo "This is fancy a comment" > output/results.txt
- uses: actions/upload-artifact@v1
with:
name: results
path: output
- uses: actions/download-artifact@v1
with:
name: results
- name: comment PR
uses: fuzzbuzz/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path: results/results.txt
prefix: Benchmark Results
PR Comment and Update from File 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.