Last active
October 16, 2020 19:56
-
-
Save Deborah-Digges/342ad72d6960e733dbf0634bc2b0e7b3 to your computer and use it in GitHub Desktop.
action.yml for github action
This file contains hidden or 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: 'Welcome bot on new pull requests' | |
description: 'Greet new contributors on a repository' | |
inputs: | |
access-token: | |
description: 'A GitHub personal access token used to make comments on your behalf' | |
required: true | |
message: | |
description: 'A personal message to send to a new contributor on your repository' | |
required: true | |
default: 'Welcome, {}! Thank you for your contribution' | |
runs: | |
using: 'node12' | |
main: 'src/index.js' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment