9 lines
188 B
Python
9 lines
188 B
Python
"""
|
|
Contains the logic to build and return the change sources for
|
|
the build master.
|
|
"""
|
|
|
|
def get_change_sources():
|
|
# Currently no sources since we're using a GitHub hook
|
|
return []
|