Skip to content

Commit

Permalink
Keep revision params on rerun of a build
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettheel authored and Garrett Heel committed Jul 15, 2016
1 parent a60e616 commit e5f35f4
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -605,6 +605,8 @@ private List<Action> filterActions(final List<Action> actions) {
}
} else if (action instanceof ParametersAction) {
retval.add(action);
} else if ("hudson.plugins.git.RevisionParameterAction".equals(action.getClass().getName())) {
retval.add(action);
}
}
return retval;
Expand Down

0 comments on commit e5f35f4

Please sign in to comment.