diff --git a/action.yml b/action.yml index 39c2678..0559a16 100644 --- a/action.yml +++ b/action.yml @@ -7,8 +7,14 @@ # # Name and Description of the Action (Like displayed in GitHub Marketplace Overview) -name: 'Deploy to AWS S3' -description: 'Deploys a Node-JS App to AWS S3' +name: 'Print Fibonacci Numbers' +description: 'Prints a sequence of fibonacci numbers' + +inputs: + iterations: + description: 'The maximum amount of iterations to produce fibonacci numbers' + required: false + default: 10 runs: using: 'node16' # Must be 'nodeXX' for a custom js action