Skip to content

Commit 420fea3

Browse files
authored
GODRIVER-2978 Fix branch synching workflow (#1400)
1 parent 5b70cf9 commit 420fea3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.evergreen/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2333,7 +2333,7 @@ axes:
23332333
VENV_BIN_DIR: "Scripts"
23342334
- id: "rhel87-64-go-1-20"
23352335
display_name: "RHEL 8.7"
2336-
run_on: rhel8.7-large
2336+
run_on: rhel8.7-large
23372337
variables:
23382338
GO_DIST: "/opt/golang/go1.20"
23392339
- id: "macos11-go-1-20"
@@ -2704,12 +2704,12 @@ buildvariants:
27042704
GO_DIST: "/opt/golang/go1.20"
27052705
tasks:
27062706
- name: ".compile-check"
2707-
2707+
27082708
- name: atlas-test
27092709
tags: ["pullrequest"]
27102710
display_name: "Atlas test"
27112711
run_on:
2712-
- rhel8.7-large
2712+
- rhel8.7-large
27132713
expansions:
27142714
GO_DIST: "/opt/golang/go1.20"
27152715
tasks:
@@ -2719,7 +2719,7 @@ buildvariants:
27192719
tags: ["pullrequest"]
27202720
display_name: "Atlas Data Lake Test"
27212721
run_on:
2722-
- rhel8.7-large
2722+
- rhel8.7-large
27232723
expansions:
27242724
GO_DIST: "/opt/golang/go1.20"
27252725
tasks:

.github/workflows/sync.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
- name: Create a sync PR
1717
run: |
1818
git config --global github.user $GITHUB_ACTOR
19-
git config user.email [email protected]
20-
git config user.name $GITHUB_ACTOR
19+
git config --global user.email [email protected]
20+
git config --global user.name $GITHUB_ACTOR
2121
export AUTH_TOKEN=${{secrets.GITHUB_TOKEN}}
2222
sha=$(git rev-parse HEAD)
2323
bash ./etc/cherry-picker.sh $sha

0 commit comments

Comments
 (0)