mirror of
https://github.com/Adam-Ant/drone-trigger
synced 2024-12-20 07:24:34 +00:00
Cleanup default config
This commit is contained in:
parent
5698858e5c
commit
fe8d0b4f51
21
main.py
21
main.py
@ -10,30 +10,33 @@ import requests
|
|||||||
|
|
||||||
from json import loads as jload
|
from json import loads as jload
|
||||||
|
|
||||||
defaultconfig = '''
|
defaultconfig = '''[Connection]
|
||||||
[Connection]
|
|
||||||
# Specify the URL to the drone server, including port and protocol
|
# Specify the URL to the drone server, including port and protocol
|
||||||
host = https://drone.example.org
|
host = https://drone.example.org
|
||||||
|
|
||||||
|
# Auth key found on your Drone account page
|
||||||
auth_key = eyJEXAMPLE.AUTH.KEY
|
auth_key = eyJEXAMPLE.AUTH.KEY
|
||||||
|
|
||||||
|
# Time to wait between checks. Note that too low may ban you from the api, especially on GitHub
|
||||||
# Specified in seconds (Default: 300)
|
# Specified in seconds (Default: 300)
|
||||||
#sleep_time = 300
|
#sleep_time = 300
|
||||||
|
|
||||||
#[ExampleGitHubBuild]
|
#[ExampleGitHubBuild]
|
||||||
# Example shown uses githubs api to find and compare on the sha of the latest commit
|
# Example shown uses githubs api to find and compare on the sha of the latest commit
|
||||||
|
|
||||||
# Name of the repo to trigger in drone
|
# Name of the repo to trigger in drone
|
||||||
#drone_repo = Example/HelloWorld
|
#drone_repo = Example/HelloWorld
|
||||||
|
|
||||||
# URL of the json structure that needs curling
|
|
||||||
#url = https://api.github.com/repos/Kaylee/ShinyRepo/git/refs/heads/master
|
|
||||||
|
|
||||||
# JSON Tree needed to resolve the value.
|
|
||||||
#structure = object.sha
|
|
||||||
|
|
||||||
# Branch to use for deciding which drone build to fork and trigger (Default: master)
|
# Branch to use for deciding which drone build to fork and trigger (Default: master)
|
||||||
#branch = master
|
#branch = master
|
||||||
|
|
||||||
|
# URL of the json structure to check against
|
||||||
|
#url = https://api.github.com/repos/Kaylee/ShinyRepo/git/refs/heads/master
|
||||||
|
# JSON Tree needed to resolve the value.
|
||||||
|
#structure = object.sha
|
||||||
|
|
||||||
#[ExampleGitHubRelease]
|
#[ExampleGitHubRelease]
|
||||||
#drone_repo = Example/HelloRelease
|
#drone_repo = Example/HelloRelease
|
||||||
|
#branch = release
|
||||||
#url = https://api.github.com/repos/Kaylee/ShinyRepo/releases/latest
|
#url = https://api.github.com/repos/Kaylee/ShinyRepo/releases/latest
|
||||||
#structure = name
|
#structure = name
|
||||||
'''
|
'''
|
||||||
|
Loading…
Reference in New Issue
Block a user