Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 3 additions & 4 deletions .github/workflows/sync-fork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ name: Sync Fork with Upstream

on:
schedule:
# Runs every minute (minimum interval for GitHub Actions cron)
# Note: GitHub Actions doesn't support intervals less than 1 minute
- cron: "*/1 * * * *"
- cron: "*/30 * * * *"

workflow_dispatch: # Allows manual triggering

jobs:
Expand Down Expand Up @@ -47,7 +46,7 @@ jobs:
- name: Merge upstream changes
run: |
CURRENT_BRANCH="${{ steps.branch.outputs.branch }}"
UPSTREAM_BRANCH="staging" # Upstream default branch
UPSTREAM_BRANCH="prod" # Upstream default branch

git checkout $CURRENT_BRANCH

Expand Down
Loading
Loading