Find all stage names in Gitlab CI YAML files
Jun 23, 2024/
#regex
/-1 minTo find all Gitlab pipeline stage names in the project, you can use the pattern below by turning on the regex flag of VSCode search.
1^.+:$(?=\n.*stage:)
To find all Gitlab pipeline stage names in the project, you can use the pattern below by turning on the regex flag of VSCode search.
1^.+:$(?=\n.*stage:)