updating fingerprint

This commit is contained in:
Sarah 2021-04-22 15:08:55 +01:00
parent af54f11426
commit 5a36fe22fc
No known key found for this signature in database
GPG Key ID: 9DBF6A510A21B379
2 changed files with 6 additions and 6 deletions

View File

@ -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 "hashicorp-ci@users.noreply.github.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

View File

@ -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 "hashicorp-ci@users.noreply.github.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