From 41469b324ae01103d597de9900fc4ad12b552261 Mon Sep 17 00:00:00 2001 From: Arzianghanchi Date: Fri, 26 Dec 2025 21:24:25 +0000 Subject: [PATCH 1/2] fix: add git authentication to reusable readme workflow --- .github/workflows/readme.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/readme.yml b/.github/workflows/readme.yml index 255a32eb..7826c29a 100644 --- a/.github/workflows/readme.yml +++ b/.github/workflows/readme.yml @@ -26,6 +26,10 @@ jobs: ref: master token: ${{ env.GH_TOKEN }} + - name: 🔐 Setup GitHub credentials + run: | + run: git config --global url.https://${{ secrets.TOKEN }}@github.com/.insteadOf https://github.com/ + - name: 🐍 Set up Python 3.7 uses: actions/setup-python@v6 with: From 1aff2537cce935ca5a5a3b59affe62b4fe8ca270 Mon Sep 17 00:00:00 2001 From: Arzianghanchi Date: Fri, 26 Dec 2025 21:28:16 +0000 Subject: [PATCH 2/2] fix: add git authentication to reusable readme workflow --- .github/workflows/readme.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/readme.yml b/.github/workflows/readme.yml index 7826c29a..4ba49ad3 100644 --- a/.github/workflows/readme.yml +++ b/.github/workflows/readme.yml @@ -28,7 +28,7 @@ jobs: - name: 🔐 Setup GitHub credentials run: | - run: git config --global url.https://${{ secrets.TOKEN }}@github.com/.insteadOf https://github.com/ + git config --global url.https://${{ secrets.TOKEN }}@github.com/.insteadOf https://github.com/ - name: 🐍 Set up Python 3.7 uses: actions/setup-python@v6