8000 Base main by sugix · Pull Request #1 · StrandForge/sdk-python · GitHub
[go: up one dir, main page]

Skip to content

Base main #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 14, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
ci: add upstream sync workflow
  • Loading branch information
Sugi Venugeethan authored and Sugi Venugeethan committed Jun 14, 2025
commit 904a4477260d1fc83956aafedd6dc70b25d9b0ce
20 changes: 20 additions & 0 deletions .github/workflows/sync-upstream.yml
5825
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Sync Upstream
on:
schedule:
- cron: '0 0 * * *' # Daily sync
workflow_dispatch: # Manual trigger
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Sync upstream
run: |
git config user.name "StrandForge Bot"
git config user.email "bot@strandforge.ai"
git remote add upstream https://github.com/strands-agents/sdk-python.git
git fetch upstream
git checkout base-main
git merge upstream/main --no-edit
git push origin base-main
0