From aa16e13db3036dd84abe35b468db7eadb2562dda Mon Sep 17 00:00:00 2001 From: Jonas Bengtsson Date: Fri, 3 Jan 2020 21:38:11 +0100 Subject: [PATCH] Improve documentation --- README.md | 8 +++++++- action.yml | 4 ++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 09d9ea7..5bee8f0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,12 @@ # Android Problem Matchers -Adds common problem matchers for Android builds to GitHub Action workflows. +Adds common problem matchers for Android builds to GitHub Action workflows. Currently adds support for the following tools: + +* Kotlin compiler +* Android Lint +* Gradle + +This action only configures the problem matchers in order to be compatible with diverse Android workflows. ## Inputs diff --git a/action.yml b/action.yml index e231b41..557d59a 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,9 @@ name: 'Android Problem Matchers' +author: 'Jonas Bengtsson' description: 'Adds common problem matchers for Android builds' runs: using: 'node12' main: 'index.js' +branding: + icon: 'list' + color: 'green'