From 4db36ed50f93b4ae3bbac9494ed7765c6a64b035 Mon Sep 17 00:00:00 2001 From: phips28 Date: Sat, 26 Oct 2019 21:19:18 +0200 Subject: [PATCH] added git config --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 17a2ceb..799c108 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,8 +24,11 @@ COPY package*.json ./ # Install dependencies RUN apt-get update RUN apt-get -y install git +RUN git config user.name "Bump Version" +RUN git config user.email "gh-action-bump-version@users.noreply.github.com" RUN npm ci + # Copy the rest of your action's code COPY . .