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 81796fe commit d254e67Copy full SHA for d254e67
.github/workflows/verify-new-library-version-compatibility.yml
@@ -258,13 +258,22 @@ jobs:
258
EOF
259
260
echo "Creating a new issue"
261
+
262
+ # Choose assignee based on the label:
263
+ # - "fails-native-image-build": assign to @vjovanov
264
+ # - Others: assign to @kimeta
265
+ ASSIGNEE="kimeta"
266
+ if [ "$FAILURE_LABEL" = "fails-native-image-build" ]; then
267
+ ASSIGNEE="vjovanov"
268
+ fi
269
270
gh issue create \
271
--repo "$REPO" \
272
--title "$TITLE" \
273
--body-file "$BODY_FILE" \
274
--label "library-unsupported-version" \
- --label "$FAILURE_LABEL"
-
275
+ --label "$FAILURE_LABEL" \
276
+ --assignee "$ASSIGNEE"
277
278
rm "$BODY_FILE"
279
0 commit comments