From 06c624689a8c28a68dffbf7887c1ddb06e88bb18 Mon Sep 17 00:00:00 2001 From: Minjeong Kim <101111603+Mingguriguri@users.noreply.github.com> Date: Sun, 6 Apr 2025 23:37:36 +0900 Subject: [PATCH 1/2] =?UTF-8?q?test:=20test=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=20(3)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- minjeong/test.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/minjeong/test.txt b/minjeong/test.txt index e69de29b..30d74d25 100644 --- a/minjeong/test.txt +++ b/minjeong/test.txt @@ -0,0 +1 @@ +test \ No newline at end of file From 603667a056cef9da357f5557709909881ce4353e Mon Sep 17 00:00:00 2001 From: Minjeong Kim <101111603+Mingguriguri@users.noreply.github.com> Date: Sun, 6 Apr 2025 23:54:24 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20working-directory=20=EB=8C=80?= =?UTF-8?q?=EC=8B=A0=20=EC=BB=A4=EB=B0=8B/=ED=91=B8=EC=8B=9C=20=EC=8A=A4?= =?UTF-8?q?=ED=85=9D=EC=9D=84=20=EB=A6=AC=ED=8F=AC=EC=A7=80=ED=86=A0?= =?UTF-8?q?=EB=A6=AC=20=EB=A3=A8=ED=8A=B8=EC=97=90=EC=84=9C=20=EC=8B=A4?= =?UTF-8?q?=ED=96=89=ED=95=98=EB=8F=84=EB=A1=9D=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/update_challenge_progress.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update_challenge_progress.yml b/.github/workflows/update_challenge_progress.yml index eab84a7e..f9fa35b9 100644 --- a/.github/workflows/update_challenge_progress.yml +++ b/.github/workflows/update_challenge_progress.yml @@ -33,12 +33,13 @@ jobs: git push https://x-access-token:${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/AlgorithmStudy-Allumbus/codingtest_algorithm_study.git ${{ github.head_ref }} - name: Commit updated files - working-directory: _MonthlyChallenges run: | + cd _MonthlyChallenges git config --global user.name "${{ secrets.GIT_USER_NAME }}" git config --global user.email "${{ secrets.GIT_USER_EMAIL }}" git add scoreboard.json DASHBOARD.md HISTORY.md git commit -m "Update challenge progress dashboard" || echo "No changes to commit" + cd .. git remote set-url origin https://x-access-token:${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/AlgorithmStudy-Allumbus/codingtest_algorithm_study.git git push origin ${{ github.head_ref }}