diff --git a/.claude/skills/sync-site/SKILL.md b/.claude/skills/sync-site/SKILL.md index a45594a..312ec01 100644 --- a/.claude/skills/sync-site/SKILL.md +++ b/.claude/skills/sync-site/SKILL.md @@ -75,5 +75,5 @@ Stage, commit, and push the change: ```bash git add site/index.qmd git commit -m "Sync site/index.qmd with README.md" -git push origin master +git push origin main ``` diff --git a/.claude/skills/update-pypi-dates/SKILL.md b/.claude/skills/update-pypi-dates/SKILL.md index 7d24279..e7ef43a 100644 --- a/.claude/skills/update-pypi-dates/SKILL.md +++ b/.claude/skills/update-pypi-dates/SKILL.md @@ -51,7 +51,7 @@ If any updates were made: ```bash git add README.md non-github-urls.md git commit -m "Update PyPI project last updated dates" -git push origin master +git push origin main ``` ## Usage diff --git a/.claude/skills/update-pypi-dates/scripts/update_pypi_dates.sh b/.claude/skills/update-pypi-dates/scripts/update_pypi_dates.sh index 23022d1..5dcb7a3 100755 --- a/.claude/skills/update-pypi-dates/scripts/update_pypi_dates.sh +++ b/.claude/skills/update-pypi-dates/scripts/update_pypi_dates.sh @@ -19,7 +19,7 @@ if [ $exit_code -eq 0 ]; then echo "📝 Changes detected, committing..." git add README.md git commit -m "Update PyPI project last updated dates" - git push origin master + git push origin main echo "✅ Changes pushed to remote" fi fi diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c10928f..9c363fb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,7 +4,7 @@ on: schedule: - cron: "0 1 * * *" push: - branches: [ master ] + branches: [ main ] paths: - 'README.md' - 'parse.py'