
Now that the update-bug script no longer tries to update bug assignments, it's possible to run it on patchset-created events again. Go back to doing that until someone has time to build a suitable replacement for it. This partially reverts commit 1ccf5e68e51815479381a941fd9cf4f469498c6d. Change-Id: Idf589eb818d208d65d1f1430ddec962b015165c0 Depends-On: https://review.opendev.org/782538
19 lines
913 B
Bash
Executable File
19 lines
913 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export GERRIT_GIT_DIR=/var/gerrit/git
|
|
export GERRIT_CONFIG=/var/gerrit/etc/gerrit.config
|
|
export GERRIT_SECURE_CONFIG=/var/gerrit/etc/secure.config
|
|
export PROJECTS_YAML=/var/gerrit/etc/projects.yaml
|
|
export PROJECTS_INI=/var/gerrit/etc/projects.ini
|
|
|
|
# Use timeout to kill any process running longer than 10 minutes.
|
|
timeout -k 2m 10m /usr/local/bin/update-bug patchset-created "$@"
|
|
timeout -k 2m 10m /usr/local/bin/notify-impact patchset-created "$@" --impact SecurityImpact --dest-address 'openstack-security@lists.openstack.org'
|
|
# TODO: reenable these once jeepyb no longer relies on the old Gerrit DB
|
|
#timeout -k 2m 10m /usr/local/bin/update-blueprint patchset-created "$@"
|
|
#if [ -f /var/gerrit/etc/ssh_welcome_rsa_key ] ; then
|
|
#timeout -k 2m 10m /usr/local/bin/welcome-message patchset-created \
|
|
# --verbose --ssh-user=welcome-message \
|
|
# --ssh-key=/var/gerrit/etc/ssh_welcome_rsa_key "$@"
|
|
#fi
|