diff --git a/.github/workflows/sync-plugin.yml b/.github/workflows/sync-plugin.yml index 36728be..b49c9c5 100644 --- a/.github/workflows/sync-plugin.yml +++ b/.github/workflows/sync-plugin.yml @@ -67,5 +67,8 @@ jobs: --base main \ --head "$BRANCH") echo "Created PR: $PR_URL" - gh pr merge --repo firecrawl/firecrawl-claude-plugin --auto --merge --delete-branch "$PR_URL" + # Merge immediately. --auto requires branch protection with + # required checks on the target repo, which firecrawl-claude-plugin + # doesn't have, and there's nothing to wait for on a sync PR anyway. + gh pr merge --repo firecrawl/firecrawl-claude-plugin --merge --delete-branch "$PR_URL" fi diff --git a/.github/workflows/sync-skills.yml b/.github/workflows/sync-skills.yml index f5b1331..52a4706 100644 --- a/.github/workflows/sync-skills.yml +++ b/.github/workflows/sync-skills.yml @@ -62,5 +62,8 @@ jobs: --base main \ --head "$BRANCH") echo "Created PR: $PR_URL" - gh pr merge --repo firecrawl/firecrawl-cursor-plugin --auto --merge --delete-branch "$PR_URL" + # Merge immediately. --auto requires branch protection with + # required checks on the target repo, which firecrawl-cursor-plugin + # doesn't have, and there's nothing to wait for on a sync PR anyway. + gh pr merge --repo firecrawl/firecrawl-cursor-plugin --merge --delete-branch "$PR_URL" fi