From 97fef59c8277263b0db380e1b03911c9fbaaa7fc Mon Sep 17 00:00:00 2001 From: Andrew Mason Date: Thu, 24 Oct 2019 00:18:07 -0400 Subject: [PATCH] update labels in dockerfile --- Dockerfile | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 98bd15c..c508969 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,12 +2,15 @@ FROM ruby:2.6.5-alpine RUN apk add --update build-base git -LABEL com.github.actions.name="Rubocop Linter" -LABEL com.github.actions.description="Lint your Ruby code" -LABEL com.github.actions.icon="code" -LABEL com.github.actions.color="red" +LABEL "com.github.actions.name"="Rubocop Linter" +LABEL "com.github.actions.description"="A GitHub Action that lints your Ruby code with Rubocop!" +LABEL "com.github.actions.icon"="code" +LABEL "com.github.actions.color"="red" + +LABEL "repository"="https://github.com/andrewmcodes/rubocop-linter-action" +LABEL "maintainer"="Andrew Mason " +LABEL "version"="0.2.0" -LABEL maintainer="Andrew Mason " COPY lib /action/lib RUN gem install bundler