Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[JENKINS-74088] [JENKINS-74089] Migrate legacy checkUrl attribute in GitlabBuildTrigger/global.jelly & config.jelly #233

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<f:textbox />
</f:entry>
<f:entry title="${%Crontab line}" field="cron" help="/descriptor/hudson.triggers.TimerTrigger/help/spec">
<f:textbox default="${descriptor.cron}" checkUrl="'descriptorByName/hudson.triggers.TimerTrigger/checkSpec?value=' + encodeURIComponent(this.value)"/>
<f:textbox default="${descriptor.cron}" checkUrl="descriptorByName/hudson.triggers.TimerTrigger/checkSpec" checkDependsOn=""/>
</f:entry>
<f:entry title="Assignee filter" field="assigneeFilter"
description="Trigger build only if merge request is assigned to assignee username. No value will always trigger job, regardless of assignee.">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<f:password/>
</f:entry>
<f:entry title="${%Crontab line}" field="cron" help="/descriptor/hudson.triggers.TimerTrigger/help/spec">
<f:textbox default="H/5 * * * *" checkUrl="'descriptorByName/hudson.triggers.TimerTrigger/checkSpec?value=' + encodeURIComponent(this.value)"/>
<f:textbox default="H/5 * * * *" checkUrl="descriptorByName/hudson.triggers.TimerTrigger/checkSpec" checkDependsOn=""/>
</f:entry>
<f:entry title="Assignee Filter" field="assigneeFilter"
description="Trigger build only if merge request is assigned to assignee username. No value will always trigger job, regardless of assignee.">
Expand Down