From 8306bff82003d0b7ff4ed50d07c2c043092e7f65 Mon Sep 17 00:00:00 2001 From: "Benjamin E. Coe" Date: Sun, 10 Oct 2021 15:01:03 -0400 Subject: [PATCH] feat(docs): update action description (#20) --- action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 0ca878a..8f024ea 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,5 @@ name: 'conventional-release-labels' -description: 'automatically apply release labels to PR, based on conventionalcommits.org' +description: 'automatically adds labels to pull requests based on Conventional Commits. These labels can be used in conjunction GitHub's automatically generated release notes' author: Benjamin Coe inputs: token: @@ -12,6 +12,10 @@ inputs: default: '{"feat": "feature", "fix": "fix", "breaking": "breaking"}' type: string +branding: + icon: 'align-justify' + color: 'yellow' + runs: using: 'node12' main: 'dist/index.js'