Add workflow rules
Recipe ID
org.openrewrite.gitlab.AddWorkflowRulesArtifact
org.openrewrite.recipe:rewrite-gitlabAdd workflow:rules to .gitlab-ci.yml to control pipeline creation.
Usage
You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.gitlab.AddWorkflowRules --recipe-option "rules=- if: $CI_PIPELINE_SOURCE == 'merge_request_event'\n- if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS\n when: never\n- if: $CI_COMMIT_BRANCH"If the recipe isn’t available locally, install it with:
mod config recipes jar install org.openrewrite.recipe:rewrite-gitlab:0.24.0Options
| Name | Type | Description |
|---|---|---|
rulesrequired | String | The YAML snippet defining the workflow rules. e.g. - if: $CI_PIPELINE_SOURCE == 'merge_request_event'\n- if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS\n when: never\n- if: $CI_COMMIT_BRANCH |
acceptTheirs | Boolean | When workflow rules already exist, prefer the original value. |
Definition
This recipe runs the following recipes in order.
- Merge YAML snippet
org.openrewrite.yaml.MergeYaml
Data tables
Structured output this recipe can produce.
- Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats