Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Retry to Step struct #4

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ If the version number is not provided then the most recent version of the plugin
steps:
- label: "Triggering pipelines"
plugins:
- glydways/monorepo-diff#v2.5.10:
- glydways/monorepo-diff#v2.5.11:
diff: "git diff --name-only HEAD~1"
watch:
- path: "bar-service/"
Expand All @@ -38,7 +38,7 @@ steps:
steps:
- label: "Triggering pipelines"
plugins:
- glydways/monorepo-diff#v2.5.10:
- glydways/monorepo-diff#v2.5.11:
diff: "git diff --name-only $(head -n 1 last_successful_build)"
interpolation: false
env:
Expand Down Expand Up @@ -162,7 +162,7 @@ Add `log_level` property to set the log level. Supported log levels are `debug`
steps:
- label: "Triggering pipelines"
plugins:
- glydways/monorepo-diff#v2.5.10:
- glydways/monorepo-diff#v2.5.11:
diff: "git diff --name-only HEAD~1"
log_level: "debug" # defaults to "info"
watch:
Expand Down Expand Up @@ -238,7 +238,7 @@ hooks:
steps:
- label: "Triggering pipelines"
plugins:
- glydways/monorepo-diff#v2.5.10:
- glydways/monorepo-diff#v2.5.11:
diff: "git diff --name-only HEAD~1"
watch:
- path: app/cms/
Expand Down
1 change: 1 addition & 0 deletions plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ type Step struct {
Plugins interface{} `yaml:"plugins,omitempty"`
TimeoutInMinutes interface{} `json:"timeout_in_minutes" yaml:"timeout_in_minutes,omitempty"`
Parallelism interface{} `json:"parallelism" yaml:"parallelism,omitempty"`
Retry interface{} `json:"retry" yaml:"retry,omitempty"`
}

// Agent is Buildkite agent definition
Expand Down
Loading