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 ff8284f commit 2b227f8Copy full SHA for 2b227f8
entrypoint.sh
@@ -5,6 +5,7 @@
5
echo $INPUT_PR
6
echo $INPUT_COMMAND
7
echo $INPUT_OPTIONS
8
+echo $EVENT_NAME
9
10
SUPPORTED_COMMANDS=("/review" "review")
11
@@ -23,8 +24,8 @@ done
23
24
25
# Run the Docker container from the specified image
26
if [ "$valid_command" = true ]; then
- docker pull bitoai/cra:latest >&2
27
- exec docker run bitoai/cra:latest --mode=cli --pr_url $INPUT_PR --command "$INPUT_COMMAND" rest $INPUT_OPTIONS
+ docker pull bitoai/cra:1.3.0 >&2
28
+ exec docker run bitoai/cra:1.3.0 --mode=cli --pr_url $INPUT_PR --command "$INPUT_COMMAND" rest $INPUT_OPTIONS
29
else
30
echo "$INPUT_COMMAND is not supported"
31
exit 0 # Exit the script with a non-zero status code
0 commit comments