Skip to content

Instantly share code, notes, and snippets.

@gaborvecsei
Created March 13, 2020 17:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gaborvecsei/45a7a0a1c681d23370d233fb26ebeaf2 to your computer and use it in GitHub Desktop.
Save gaborvecsei/45a7a0a1c681d23370d233fb26ebeaf2 to your computer and use it in GitHub Desktop.
name: 'Prediction GitHub Action Test'
description: 'This is a sample with which you can run inference on a ML model with a toy dataset'
inputs:
issue_comment_body:
required: true
description: 'This is the Github issue comment message'
issue_number:
required: true
description: 'Number of the Github issue'
issue_user:
required: true
description: 'This user send the comment'
outputs:
issue_comment_reply:
description: 'Reply to the request'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.issue_comment_body }}
- ${{ inputs.issue_number }}
- ${{ inputs.issue_user }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment