Fix some bugs
This commit is contained in:
parent
d773ded73d
commit
c690cdb920
|
@ -104,7 +104,7 @@ pvc:
|
||||||
begin: "🤞" # A task is beginning
|
begin: "🤞" # A task is beginning
|
||||||
success: "✅" # A task succeeded
|
success: "✅" # A task succeeded
|
||||||
failure: "❌" # A task failed
|
failure: "❌" # A task failed
|
||||||
completed: "👌" # A task is completed
|
completed: "👌" # A task is completed
|
||||||
# The webhook body elements; this is specific to the webhook target, and is converted into raw
|
# The webhook body elements; this is specific to the webhook target, and is converted into raw
|
||||||
# JSON before sending.
|
# JSON before sending.
|
||||||
# Two special variables are used: "{icon}" displays one of the above icons, and "{message}" displays
|
# Two special variables are used: "{icon}" displays one of the above icons, and "{message}" displays
|
||||||
|
|
|
@ -39,7 +39,7 @@ pvc:
|
||||||
begin: "🤞" # A task is beginning
|
begin: "🤞" # A task is beginning
|
||||||
success: "✅" # A task succeeded
|
success: "✅" # A task succeeded
|
||||||
failure: "❌" # A task failed
|
failure: "❌" # A task failed
|
||||||
completed: "👌" # A task is completed
|
completed: "👌" # A task is completed
|
||||||
body:
|
body:
|
||||||
channel: "mychannel"
|
channel: "mychannel"
|
||||||
username: "pvcbootstrapd"
|
username: "pvcbootstrapd"
|
||||||
|
|
|
@ -250,9 +250,6 @@ def entrypoint():
|
||||||
|
|
||||||
notifications.send_webhook(config, "begin", "Starting up pvcbootstrapd")
|
notifications.send_webhook(config, "begin", "Starting up pvcbootstrapd")
|
||||||
|
|
||||||
cspec = git.load_cspec_yaml(config)
|
|
||||||
print(cspec)
|
|
||||||
|
|
||||||
# Initialize the database
|
# Initialize the database
|
||||||
db.init_database(config)
|
db.init_database(config)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue