File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -37,12 +37,13 @@ main() {
37
37
38
38
log::message " Event: $event - Action: $action "
39
39
40
+ local project_id
40
41
IFS=' ,' read -r -a task_ids <<< " $task_ids_str"
41
42
for task_id in " ${task_ids[@]} " ; do
42
43
log::message " Task found with the id: $task_id "
43
44
44
45
export TEAMWORK_TASK_ID=$task_id
45
- local -r project_id=" $( teamwork::get_project_id_from_task " $task_id " ) "
46
+ project_id=" $( teamwork::get_project_id_from_task " $task_id " ) "
46
47
export TEAMWORK_PROJECT_ID=$project_id
47
48
48
49
if [ " $event " == " pull_request" ] && [ " $action " == " opened" ]; then
@@ -53,6 +54,8 @@ main() {
53
54
teamwork::pull_request_review_submitted
54
55
elif [ " $event " == " pull_request_review" ] && [ " $action " == " dismissed" ]; then
55
56
teamwork::pull_request_review_dismissed
57
+ elif [ " $ENV " == " test" ]; then # always run pull_request_opened at the very least when in test
58
+ teamwork::pull_request_opened
56
59
else
57
60
log::message " Operation not allowed"
58
61
exit 0
You can’t perform that action at this time.
0 commit comments