From 5981f8933e92b78098af86b9e33fe0871cc7a3be Mon Sep 17 00:00:00 2001 From: Marko Schilde Date: Mon, 27 Jan 2020 11:40:02 +0100 Subject: [PATCH] added action branding (#19) --- README.md | 2 +- action.yml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 86847cf..8ce85e1 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ## Purpose -This action checks all open Pull Requests for merge conflicts and marks them with a label. +This action checks all open Pull Requests for merge conflicts and marks them with a Github label. ![Github action in action](./demo.png) diff --git a/action.yml b/action.yml index b7dbac0..fb2051c 100644 --- a/action.yml +++ b/action.yml @@ -1,6 +1,9 @@ name: 'Auto-label merge conflicts' description: 'Github Action to automatically label PRs with "conflict" label' author: 'Marko Schilde' +branding: + icon: 'alert-octagon' + color: 'red' inputs: CONFLICT_LABEL_NAME: description: 'label name used to marked PRs with merge conflicts'