This repository was archived by the owner on Sep 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 77# To validate changes, use an online parser, eg. http://yaml-online-parser.appspot.com/
88
99# Find the latest version here: https://github.com/CircleCI-Public/circleci-dockerfiles/tree/master/node/images
10- var_1 : &docker_image circleci/node:14.15 .1-browsers
10+ var_1 : &docker_image circleci/node:14.16 .1-browsers
1111var_2 : &cache_key angularjs-material-{{ checksum "package-lock.json" }}
1212
1313# Settings common to each job
@@ -60,7 +60,7 @@ var_9: &publish_branches_filter
6060version : 2.1
6161
6262orbs :
63- build-tools : circleci/build-tools@2.7 .0
63+ build-tools : circleci/build-tools@2.9 .0
6464
6565commands :
6666 # Command for checking out the source code from GitHub. This also ensures that the source code
@@ -69,6 +69,12 @@ commands:
6969 description : Checkout and verify clean merge with master
7070 steps :
7171 - checkout
72+ - run :
73+ name : Set git user.name and user.email for rebase.
74+ # User is required for rebase.
75+ command : |
76+ git config user.name "angular-ci"
77+ git config user.email "angular-ci"
7278 - build-tools/merge-with-parent :
7379 parent : master
7480
You can’t perform that action at this time.
0 commit comments