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
5 changes: 4 additions & 1 deletion .github/workflows/sync-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 4 additions & 1 deletion .github/workflows/sync-skills.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading