Skip to content

Commit 90e71f0

Browse files
committed
Fix sync: don't fail if label doesn't exist
1 parent 50ba560 commit 90e71f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/upstream-sync.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
BODY
9393
)" \
9494
--base dev \
95-
--label "upstream-sync"
95+
--label "upstream-sync" || true
9696
9797
- name: Create PR (with conflicts)
9898
if: steps.check.outputs.behind != '0' && steps.merge.outputs.clean == 'false'
@@ -130,4 +130,4 @@ jobs:
130130
BODY
131131
)" \
132132
--base dev \
133-
--label "upstream-sync"
133+
--label "upstream-sync" || true

0 commit comments

Comments
 (0)