I want to append following object array with existing one in angulajs for implementing load more feature.
ie,appending AJAX response with existing one each time.
This works for me :
$scope.array1 = $scope.array1.concat(array2)
In your case it would be :
$scope.actions.data = $scope.actions.data.concat(data)