From 24351851c916df9650414db5041bb959d7bd4732 Mon Sep 17 00:00:00 2001 From: Kevin Minehart <5140827+kminehart@users.noreply.github.com> Date: Tue, 29 Apr 2025 21:01:09 -0500 Subject: [PATCH] CI: `cd grafana` after clone in backport action (#104752) cd grafana after clone --- .github/workflows/backport.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index ef014739728..54c79b1ca28 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone - run: git clone --depth=1 "https://github.com/grafana/grafana.git" + run: git clone --depth=1 "https://github.com/grafana/grafana.git" && cd grafana - run: git config --local user.name "github-actions[bot]" - run: git config --local user.email "github-actions[bot]@users.noreply.github.com" - run: git config --local --add --bool push.autoSetupRemote true