Allow to simply run a script once - no matter what the changes are

This commit is contained in:
Laurent Sigal
2015-12-22 17:55:04 +00:00
parent 577d8a1dfa
commit 5a08204b8d
3 changed files with 12 additions and 4 deletions

View File

@@ -32,6 +32,7 @@ CONFIG_JSON_SCHEMA = {
'type': 'object',
'properties': {
'id': {'type': 'string'},
'always_run': {'type': 'boolean'},
'files': {'type': 'string'},
'exclude': {'type': 'string'},
'language_version': {'type': 'string'},

View File

@@ -17,6 +17,7 @@ MANIFEST_JSON_SCHEMA = {
'type': 'object',
'properties': {
'id': {'type': 'string'},
'always_run': {'type': 'boolean'},
'name': {'type': 'string'},
'description': {'type': 'string', 'default': ''},
'entry': {'type': 'string'},