From 7056f828eaf9d3eaad8f06bd77c56fc332ee58bb Mon Sep 17 00:00:00 2001 From: emafazillah Date: Sun, 29 Mar 2020 11:16:37 +0800 Subject: [PATCH] Add action.yml --- .github/workflows/{action.yml => send-message.yml} | 0 action.yml | 13 +++++++++++++ 2 files changed, 13 insertions(+) rename .github/workflows/{action.yml => send-message.yml} (100%) create mode 100644 action.yml diff --git a/.github/workflows/action.yml b/.github/workflows/send-message.yml similarity index 100% rename from .github/workflows/action.yml rename to .github/workflows/send-message.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..ad879bd --- /dev/null +++ b/action.yml @@ -0,0 +1,13 @@ +name: 'GitHub Action for COVID-19 Updates' +description: 'Get Malaysian Covid-19 Updates. Data from 2019 Novel Coronavirus COVID-19 (2019-nCoV) Data Repository by Johns Hopkins CSSE.' +inputs: + who-to-greet: # id of input + description: 'Yesterday date' + required: true + default: 'Yesterday date' +outputs: + time: # id of output + description: 'COVID-19 Updates on confirmed, deaths, recovered and active.' +runs: + using: 'node12' + main: 'index.js' \ No newline at end of file