You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We don't always keep the reconciler forks in sync (otherwise it we
wouldn't have forked it) but during periods when they are meant to be in
sync, we use this job to confirm there are no differences.
# We don't always keep the reconciler forks in sync (otherwise it we wouldn't
379
+
# have forked it) but during periods when they are meant to be in sync, we
380
+
# use this job to confirm there are no differences.
381
+
sync_reconciler_forks:
382
+
docker: *docker
383
+
environment: *environment
384
+
steps:
385
+
- checkout
386
+
- run: yarn workspaces info | head -n -1 > workspace_info.txt
387
+
- *restore_node_modules
388
+
- run:
389
+
name: Confirm reconciler forks are the same
390
+
command: |
391
+
yarn replace-fork
392
+
git diff --exit-code || echo "Reconciler forks are not the same! Run `yarn replace-fork`. Or, if this was intentional, disable this CI check." && false
0 commit comments