Created
March 13, 2020 17:46
-
-
Save gaborvecsei/45a7a0a1c681d23370d233fb26ebeaf2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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