From 0eefd59ca280d9c0248f37a9f5f06e770af98af6 Mon Sep 17 00:00:00 2001 From: atheo89 Date: Thu, 28 Nov 2024 16:30:56 +0100 Subject: [PATCH] Change gitconfig to use --global option --- .github/workflows/notebook-controller-images-updater.yaml | 2 +- .github/workflows/sync-branches.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/notebook-controller-images-updater.yaml b/.github/workflows/notebook-controller-images-updater.yaml index 42f7c4281f1..eb3c6d6d1a9 100644 --- a/.github/workflows/notebook-controller-images-updater.yaml +++ b/.github/workflows/notebook-controller-images-updater.yaml @@ -50,7 +50,7 @@ jobs: run: | git config --global user.email "github-actions[bot]@users.noreply.github.com" git config --global user.name "GitHub Actions" - + - name: Checkout branch uses: actions/checkout@v4 with: diff --git a/.github/workflows/sync-branches.yaml b/.github/workflows/sync-branches.yaml index c925ef21ae5..80bd5e1e52a 100644 --- a/.github/workflows/sync-branches.yaml +++ b/.github/workflows/sync-branches.yaml @@ -32,8 +32,8 @@ jobs: steps: - name: Set up Git run: | - git config user.name "github-actions[bot]" - git config user.email "github-actions[bot]@users.noreply.github.com" + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions[bot]@users.noreply.github.com" - name: Checkout repository uses: actions/checkout@v4