From eb70c7aa3c493f49e8640b5632ec359abc118e03 Mon Sep 17 00:00:00 2001 From: Lukasz Gornicki Date: Thu, 28 May 2020 11:38:52 +0200 Subject: [PATCH] refactor: add missing config for templates list checker (#367) --- .github/templates-list-validator/action.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/templates-list-validator/action.yml diff --git a/.github/templates-list-validator/action.yml b/.github/templates-list-validator/action.yml new file mode 100644 index 000000000..1b0bad4a8 --- /dev/null +++ b/.github/templates-list-validator/action.yml @@ -0,0 +1,9 @@ +name: 'Templates list validator' +description: 'Use this action to generate docs or code from your AsyncAPI document. Use default templates or provide your custom ones.' +inputs: + token: + description: 'GitHub Token used to call GitHub API for list of templates' + required: true +runs: + using: 'node12' + main: 'dist/index.js'