You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .mergify.yml
+7-12
Original file line number
Diff line number
Diff line change
@@ -37,10 +37,9 @@ pull_request_rules:
37
37
actions:
38
38
comment:
39
39
message: Thank you for contributing! Your pull request will be automatically updated and merged (do not update manually, and be sure to [allow changes to be pushed to your fork](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork)).
40
-
merge:
41
-
strict: smart
40
+
queue:
41
+
name: default
42
42
method: squash
43
-
strict_method: merge
44
43
commit_message: title+body
45
44
conditions:
46
45
- base!=release
@@ -60,11 +59,9 @@ pull_request_rules:
60
59
actions:
61
60
comment:
62
61
message: Thank you for contributing! Your pull request will be automatically updated and merged without squashing (do not update manually, and be sure to [allow changes to be pushed to your fork](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork)).
63
-
merge:
64
-
strict: smart
65
-
# Merge instead of squash
62
+
queue:
63
+
name: default
66
64
method: merge
67
-
strict_method: merge
68
65
commit_message: title+body
69
66
conditions:
70
67
- -title~=(WIP|wip)
@@ -106,12 +103,10 @@ pull_request_rules:
106
103
actions:
107
104
comment:
108
105
message: Thanks Dependabot!
109
-
merge:
110
-
# 'strict: false' disables Mergify keeping the branch up-to-date from master.
111
-
# It's not necessary: Dependabot will do that itself.
112
-
# It's not dangerous: GitHub branch protection settings prevent merging stale branches.
# Remove autoTerminationPolicy from stepfunctions-tasks EmrCreateClusterProps. This value is not supported by stepfunctions at the moment and was not supported in the past.
Jobs are always submitted to a specific queue. This means that you have to create a queue before you can start submitting jobs. Each queue is mapped to at least one (and no more than three) compute environment. When the job is scheduled for execution, AWS Batch will select the compute environment based on ordinal priority and available capacity in each environment.
Sometimes you might have jobs that are more important than others, and when submitted, should take precedence over the existing jobs. To achieve this, you can create a priority based execution strategy, by assigning each queue its own priority:
A Batch Job definition helps AWS Batch understand important details about how to run your application in the scope of a Batch Job. This involves key information like resource requirements, what containers to run, how the compute environment should be prepared, and more. Below is a simple example of how to create a job definition:
0 commit comments