File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ but just those which pass evaluation checks.
6
6
Example use case "push all commits pushed to branch develop more than 30 minutes ago to branch master"
7
7
8
8
Usage:
9
- github-flow-manager [OWNER] [REPOSITORY] [SOURCE_BRANCH] [DESTINATION_BRANCH] [EXPRESSION] [flags]
9
+ github-flow-manager [OWNER] [REPOSITORY] [SOURCE_BRANCH] [DESTINATION_BRANCH] [EXPRESSION] [SPECIFIC_COMMIT_CHECK_NAME - Optional] [ flags]
10
10
11
11
Flags:
12
12
-c, --commits-number int Number of commits to get under evaluation (>0, <=100) (default 100)
@@ -18,8 +18,13 @@ Flags:
18
18
```
19
19
20
20
## Example
21
+ - Evaluating commit status success based on the cumulative commit checks result
21
22
```
22
- GITHUB_TOKEN=xxx github-flow-manager octocat Hello-World test master "StatusSuccess == false" --verbose --dry-run
23
+ GITHUB_TOKEN=xxx github-flow-manager octocat Hello-World test master "StatusSuccess == false" "pipeline-name-to-be-checked" --verbose --dry-run
24
+ ```
25
+ - Passing specific commit check name for the evaluation of the status success of the commit
26
+ ```
27
+ GITHUB_TOKEN=xxx github-flow-manager octocat Hello-World test master "StatusSuccess == false" "pipeline-name-to-be-checked" --verbose --dry-run
23
28
```
24
29
25
30
# Expressions
You can’t perform that action at this time.
0 commit comments