Skip to content

Commit aec4bd4

Browse files
Merge pull request #21 from EightfoldAI/vchoudhari/ship3.13
Add needs_ci:3.13 on shipit
2 parents 64ec93b + 307dea9 commit aec4bd4

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

entrypoint.sh

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,18 @@ if [[ $comment_body == "shipit" || $comment_body == ":shipit:" || $comment_body
7878
ci_verified)
7979
already_verified=true
8080
;;
81+
ci_verified${alt_python_version})
82+
already_verified_alt=true
83+
;;
8184
shipit)
8285
already_shipit=true
8386
;;
8487
needs_ci)
8588
already_needs_ci=true
8689
;;
87-
# needs_ci${alt_python_version})
88-
# already_needs_ci_alt=true
89-
# ;;
90+
needs_ci${alt_python_version})
91+
already_needs_ci_alt=true
92+
;;
9093
*)
9194
echo "Unknown label $label"
9295
;;
@@ -95,9 +98,9 @@ if [[ $comment_body == "shipit" || $comment_body == ":shipit:" || $comment_body
9598
if [[ "$already_verified" == false && "$already_needs_ci" == false ]]; then
9699
add_label "needs_ci"
97100
fi
98-
# if [[ "$already_verified_alt" == false && "$already_needs_ci_alt" == false ]]; then
99-
# add_label "needs_ci${alt_python_version}"
100-
# fi
101+
if [[ "$already_verified_alt" == false && "$already_needs_ci_alt" == false ]]; then
102+
add_label "needs_ci${alt_python_version}"
103+
fi
101104
if [[ "$already_shipit" == false ]]; then
102105
add_label "shipit"
103106
fi

0 commit comments

Comments
 (0)