set the 'dynamic population' parameter on your field to match the hook title; gform_field_value_post_title -> post_title
/* gravity form prepop with post title */
add_filter( 'gform_field_value_post_title', 'my_custom_population_function' );
function my_custom_population_function( $value ) {
return get_the_title();
}