Skip to content
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
2 changes: 2 additions & 0 deletions scripts/sql/11_add_parameter_event_selector.down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/* changing webhook trigger in git_sensor */
DELETE FROM git_host_webhook_event_selectors where event_id=2 and name='pull request id';
3 changes: 3 additions & 0 deletions scripts/sql/11_add_parameter_event_selector.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/* changing webhook trigger in git_sensor */
INSERT INTO git_host_webhook_event_selectors(event_id,name,selector,to_show,to_show_in_ci_filter,is_active,created_on,updated_on,to_use_in_ci_env_variable)
VALUES(2,'pull request id','pullrequest.id',true,false,true,now(),now(),true);