Skip to content
This repository has been archived by the owner on Dec 9, 2022. It is now read-only.

machine-learning-apps/pr-comment

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

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PR Comment Action

A GitHub action that will comment on the relevant open PR with a file contents when a commit is pushed.

Usage

  • Requires the GITHUB_TOKEN secret.
  • Requires the comment's artifact in the msg parameter.
  • Supports push and pull_request event types.

Sample workflow

  
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: machine-learning-apps/pr-comment@master
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        with:
          path: results/results.txt