We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2354c38 commit 8289c48Copy full SHA for 8289c48
.github/workflows/update-readme.yml
@@ -34,7 +34,11 @@ jobs:
34
git add README.md
35
if ! git diff --cached --quiet; then
36
git commit -m "chore: auto-update README with latest solutions"
37
+ # Добавляем токен в URL для пуша
38
+ git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
39
git push
40
else
41
echo "No changes to README."
- fi
42
+ fi
43
+ env:
44
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
solutions/0001_two_sum.py
@@ -0,0 +1 @@
1
+def dummy(): pass
0 commit comments