From cc862390c7892c93eca48a060c9a2b17e104dee8 Mon Sep 17 00:00:00 2001 From: Grzegorz Latosinski Date: Thu, 26 Nov 2020 12:31:55 +0100 Subject: [PATCH] github-actions: silenced git commands Signed-off-by: Grzegorz Latosinski --- .github/workflows/generate-rst.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/generate-rst.yml b/.github/workflows/generate-rst.yml index 6e64539aa..0b3fe10fe 100644 --- a/.github/workflows/generate-rst.yml +++ b/.github/workflows/generate-rst.yml @@ -18,7 +18,7 @@ jobs: run: | SUBMODULE_VERSION=latest make submodules -j3 || make submodules -j1 - git submodule foreach 'git checkout master' + git submodule foreach 'git checkout master -q' make env source env/conda/bin/activate skywater-pdk-scripts @@ -32,4 +32,4 @@ jobs: # TODO replace below with appropriate credentials git config --global user.email "action@github.com" git config --global user.name "Github Action" - git submodule foreach 'git commit -m "$DAT" || true' + git submodule foreach 'git commit -q -m "$DAT" || true'