![Jeremy Stanley](/assets/img/avatar_default.png)
* .../files/gerrit/change-merged: Call the docimpact script from this hook. * .../templates/gerrit_patchset-created.erb: Stop calling the docimpact script from this hook. Change-Id: I9a2d6e33ec35eb94ae14f7d2b17ead52bb9a2019
6 lines
277 B
Bash
Executable File
6 lines
277 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Use timeout to kill any process running longer than 10 minutes.
|
|
timeout -k 2m 10m /usr/local/bin/update-bug change-merged "$@"
|
|
timeout -k 2m 10m /usr/local/bin/notify-impact change-merged "$@" --impact DocImpact --dest-address 'openstack-docs@lists.openstack.org'
|