From 5e94a046b20d51d407edce3a61d6cac6e618af7b Mon Sep 17 00:00:00 2001 From: softprops Date: Sun, 25 Aug 2019 23:51:43 -0400 Subject: [PATCH] action metadata --- action.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..e533b5e --- /dev/null +++ b/action.yml @@ -0,0 +1,29 @@ +# https://help.github.com/en/articles/metadata-syntax-for-github-actions +name: 'GH Release' +description: 'Github Action for creating Github Releases' +author: 'softprops' +inputs: + body: + description: 'Note-worthy description of release' + required: false + default: 'empty' + name: + description: 'Gives the release a custom name' + required: false + default: 'Name of tag' + draft: + description: 'Creates a draft release' + required: false + default: 'false' + files: + description: 'Comma-delimited list of path globs for asset files to upload' + required: false + default: 'empty' +runs: + using: 'docker' + image: 'docker://softprops:action-gh-action' + env: + 'GITHUB_TOKEN': 'As provided by Github Actions' +branding: + color: 'green' + icon: 'package' \ No newline at end of file