We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f232042 + a0090e7 commit 17564eaCopy full SHA for 17564ea
.circleci/config.yml
@@ -2,6 +2,17 @@ version: 2.1
2
orbs:
3
utils: ethereum-optimism/circleci-utils@1.0.13
4
5
+parameters:
6
+ run_job:
7
+ type: enum
8
+ default: "select_job"
9
+ enum:
10
+ [
11
+ "select_job",
12
+ "run-algolia"
13
+ ]
14
+
15
16
executors:
17
node20:
18
docker:
@@ -130,14 +141,17 @@ jobs:
130
141
assignees: "sbvegan"
131
142
132
143
workflows:
133
- merge-workflow:
144
+ run-algolia-workflow:
145
+ when:
146
+ equal: [<< pipeline.parameters.run_job >>, "run-algolia"]
134
147
jobs:
135
148
- algolia:
136
149
name: Algolia Index Update
137
150
context: algolia-search
138
151
filters:
139
152
branches:
140
153
only: main
154
155
pr-workflow:
156
157
- breadcrumbs
0 commit comments