Migrate the toolstate update bot to rust-highfive · rust-lang/rust@2ccf71c (original) (raw)

File tree

3 files changed

lines changed

3 files changed

lines changed

Original file line number Diff line number Diff line change
@@ -197,7 +197,7 @@ env:
197 197 # AWS_SECRET_ACCESS_KEY=...
198 198 - secure: "j96XxTVOSUf4s4r4htIxn/fvIa5DWbMgLqWl7r8z2QfgUwscmkMXAwXuFNc7s7bGTpV/+CgDiMFFM6BAFLGKutytIF6oA02s9b+usQYnM0th7YQ2AIgm9GtMTJCJp4AoyfFmh8F2faUICBZlfVLUJ34udHEe35vOklix+0k4WDo="
199 199 # TOOLSTATE_REPO_ACCESS_TOKEN=...
200 - - secure: "cFh8thThqEJLC98XKI5pfqflUzOlxsYPRW20AWRaYOOgYHPTiGWypTXiPbGSKaeAXTZoOA+DpQtEmefc0U6lt9dHc7a/MIaK6isFurjlnKYiLOeTruzyu1z7PWCeZ/jKXsU2RK/88DBtlNwfMdaMIeuKj14IVfpepPPL71ETbuk="
200 + - secure: "ESfcXqv4N2VMhqi2iIyw6da9VrsA78I4iR1asouCaq4hzTTrkB4WNRrfURy6xg72gQ4nMhtRJbB0/2jmc9Cu1+g2CzXtyiL223aJ5CKrXdcvbitopQSDfp07dMWm+UED+hNFEanpErKAeU/6FM3A+J+60PMk8MCF1h9tqNRISJw="
201 201
202 202 before_install:
203 203 # We'll use the AWS cli to download/upload cached docker layers, so install
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ environment:
6 6 secure: 7Y+JiquYedOAgnUU26uL0DPzrxmTtR+qIwG6rNKSuWDffqU3vVZxbGXim9QpTO80
7 7 SCCACHE_DIGEST: f808afabb4a4eb1d7112bcb3fa6be03b61e93412890c88e177c667eb37f46353d7ec294e559b16f9f4b5e894f2185fe7670a0df15fd064889ecbd80f0c34166c
8 8 TOOLSTATE_REPO_ACCESS_TOKEN:
9 -secure: PTZiSxJMVUZ0VnMR5i13E4OagbXfglj7pcskDQiKufVrDm13mLoI0vDJAEM35+bY
9 +secure: gKGlVktr7iuqCoYSxHxDE9ltLOKU0nYDEuQxvWbNxUIW7ri5ppn8L06jQzN0GGzN
10 10
11 11 # By default schannel checks revocation of certificates unlike some other SSL
12 12 # backends, but we've historically had problems on CI where a revocation
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@ commit_toolstate_change() {
60 60 OLDFLAGS="$-"
61 61 set -eu
62 62
63 - git config --global user.email '34210020+rust-toolstate-update@users.noreply.github.com'
63 + git config --global user.email '7378925+rust-toolstate-update@users.noreply.github.com'
64 64 git config --global user.name 'Rust Toolstate Update'
65 65 git config --global credential.helper store
66 66 printf 'https://%s:x-oauth-basic@github.com\n' "$TOOLSTATE_REPO_ACCESS_TOKEN" \