We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c614e2 commit c4f270fCopy full SHA for c4f270f
.github/workflows/build.yml
@@ -5,7 +5,6 @@ on:
5
pull_request:
6
workflow_call:
7
8
-
9
jobs:
10
build_plugin:
11
name: Build theme
.github/workflows/cherry-pick-pr.yml
@@ -63,6 +63,11 @@ jobs:
63
64
echo "Processing cherry-pick for branch: $TARGET"
65
66
+ if ! git checkout -b "$BRANCH" "origin/$TARGET"; then
67
+ echo "::warning:: Branch $TARGET does not exist - skipping"
68
+ continue
69
+ fi
70
+
71
if ! git cherry-pick -m 1 "$MERGE_SHA"; then
72
echo "::error:: Cherry-pick conflicts detected for PR #${PR_NUMBER} on branch ${TARGET}"
73
0 commit comments