Skip to content

Commit 8289c48

Browse files
committed
Initial test commit 0.3
1 parent 2354c38 commit 8289c48

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/update-readme.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,11 @@ jobs:
3434
git add README.md
3535
if ! git diff --cached --quiet; then
3636
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
3739
git push
3840
else
3941
echo "No changes to README."
40-
fi
42+
fi
43+
env:
44+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

solutions/0001_two_sum.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
def dummy(): pass

0 commit comments

Comments
 (0)