-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Merge pull request #10094 from hashicorp/update-fingerprint updating fingerprint * Add replication metrics (#10073) Co-authored-by: Daniel Nephin <[email protected]>
- Loading branch information
Showing
6 changed files
with
50 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -665,7 +665,7 @@ jobs: | |
- checkout | ||
- add_ssh_keys: # needs a key to push updated static asset commit back to github | ||
fingerprints: | ||
- "3d:6b:98:55:78:4e:52:17:4e:17:ba:f3:bf:0b:96:2a" | ||
- "fc:55:84:15:0a:1d:c8:e9:06:d0:e8:9c:7b:a9:b7:31" | ||
- attach_workspace: | ||
at: . | ||
- run: | ||
|
@@ -675,8 +675,8 @@ jobs: | |
# if there are, we commit the ui static asset file | ||
# HEAD^! is shorthand for HEAD^..HEAD (parent of HEAD and HEAD) | ||
if ! git diff --quiet --exit-code HEAD^! ui/; then | ||
git config --local user.email "[email protected].com" | ||
git config --local user.name "hashicorp-ci" | ||
git config --local user.email "github-team-consul-core@hashicorp.com" | ||
git config --local user.name "hc-github-team-consul-core" | ||
short_sha=$(git rev-parse --short HEAD) | ||
git add agent/uiserver/bindata_assetfs.go | ||
|
@@ -886,7 +886,7 @@ jobs: | |
- checkout | ||
- add_ssh_keys: # needs a key to push cherry-picked commits back to github | ||
fingerprints: | ||
- "3d:6b:98:55:78:4e:52:17:4e:17:ba:f3:bf:0b:96:2a" | ||
- "fc:55:84:15:0a:1d:c8:e9:06:d0:e8:9c:7b:a9:b7:31" | ||
- run: .circleci/scripts/cherry-picker.sh | ||
- run: *notify-slack-failure | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -168,8 +168,8 @@ fi | |
backport_failures=0 | ||
# loop through all labels on the PR | ||
for label in $labels; do | ||
git config --local user.email "[email protected].com" | ||
git config --local user.name "hashicorp-ci" | ||
git config --local user.email "github-team-consul-core@hashicorp.com" | ||
git config --local user.name "hc-github-team-consul-core" | ||
status "checking label: $label" | ||
# if the label matches docs-cherrypick, it will attempt to cherry-pick to stable-website | ||
if [[ $label =~ docs-cherrypick ]]; then | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters