Skip to content

Commit

Permalink
Merge pull request #105 from garrettheel/fix-revision-param-on-rerun
Browse files Browse the repository at this point in the history
Keep revision params on rerun of a build
  • Loading branch information
dalvizu committed Jul 25, 2016
2 parents a60e616 + e5f35f4 commit eb81339
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 eb81339

Please sign in to comment.