-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4369 from AlanCoding/workflow_limit
Implementation of WFJT limit & SCM_branch prompting Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
- Loading branch information
Showing
22 changed files
with
413 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# Generated by Django 2.2.2 on 2019-07-23 17:56 | ||
|
||
import awx.main.fields | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('main', '0089_v360_new_job_event_types'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='workflowjobtemplate', | ||
name='ask_limit_on_launch', | ||
field=awx.main.fields.AskForField(blank=True, default=False), | ||
), | ||
migrations.AddField( | ||
model_name='workflowjobtemplate', | ||
name='ask_scm_branch_on_launch', | ||
field=awx.main.fields.AskForField(blank=True, default=False), | ||
), | ||
migrations.AddField( | ||
model_name='workflowjobtemplate', | ||
name='char_prompts', | ||
field=awx.main.fields.JSONField(blank=True, default=dict), | ||
), | ||
migrations.AlterField( | ||
model_name='joblaunchconfig', | ||
name='inventory', | ||
field=models.ForeignKey(blank=True, default=None, help_text='Inventory applied as a prompt, assuming job template prompts for inventory', null=True, on_delete=models.deletion.SET_NULL, related_name='joblaunchconfigs', to='main.Inventory'), | ||
), | ||
migrations.AlterField( | ||
model_name='schedule', | ||
name='inventory', | ||
field=models.ForeignKey(blank=True, default=None, help_text='Inventory applied as a prompt, assuming job template prompts for inventory', null=True, on_delete=models.deletion.SET_NULL, related_name='schedules', to='main.Inventory'), | ||
), | ||
migrations.AlterField( | ||
model_name='workflowjob', | ||
name='inventory', | ||
field=models.ForeignKey(blank=True, default=None, help_text='Inventory applied as a prompt, assuming job template prompts for inventory', null=True, on_delete=models.deletion.SET_NULL, related_name='workflowjobs', to='main.Inventory'), | ||
), | ||
migrations.AlterField( | ||
model_name='workflowjobnode', | ||
name='inventory', | ||
field=models.ForeignKey(blank=True, default=None, help_text='Inventory applied as a prompt, assuming job template prompts for inventory', null=True, on_delete=models.deletion.SET_NULL, related_name='workflowjobnodes', to='main.Inventory'), | ||
), | ||
migrations.AlterField( | ||
model_name='workflowjobtemplate', | ||
name='inventory', | ||
field=models.ForeignKey(blank=True, default=None, help_text='Inventory applied as a prompt, assuming job template prompts for inventory', null=True, on_delete=models.deletion.SET_NULL, related_name='workflowjobtemplates', to='main.Inventory'), | ||
), | ||
migrations.AlterField( | ||
model_name='workflowjobtemplatenode', | ||
name='inventory', | ||
field=models.ForeignKey(blank=True, default=None, help_text='Inventory applied as a prompt, assuming job template prompts for inventory', null=True, on_delete=models.deletion.SET_NULL, related_name='workflowjobtemplatenodes', to='main.Inventory'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.