Skip to content

Commit 20bd8ca

Browse files
authored
Merge pull request #13749 from ethereum/testWorkflow
Fix workflow [test]
2 parents 4a6d3f4 + e2b0c9f commit 20bd8ca

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/wallets-check.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check Wallet Data for "new_to_crypto: true"
1+
name: Check Wallet Data
22

33
on:
44
pull_request:
@@ -18,15 +18,15 @@ jobs:
1818
if git diff --name-only HEAD^ | grep -q "data/wallets/wallet-data.ts"; then
1919
if git diff -U0 HEAD^ HEAD data/wallets/wallet-data.ts | grep -q "+.*new_to_crypto: true"; then
2020
echo "New wallet added with 'new_to_crypto: true'"
21-
echo "::set-output name=new_to_crypto_found::true"
21+
echo "new_to_crypto_found=true" >> $GITHUB_OUTPUT
2222
else
23-
echo "::set-output name=new_to_crypto_found::false"
23+
echo "new_to_crypto_found=false" >> $GITHUB_OUTPUT
2424
fi
2525
fi
2626
2727
- name: Comment on PR if "new_to_crypto: true" is added
2828
if: steps.check_new_to_crypto.outputs.new_to_crypto_found == 'true'
2929
uses: actions-ecosystem/action-add-comment@v1
3030
with:
31-
repo-token: ${{ secrets.GITHUB_TOKEN }}
32-
comment: "A wallet has been added with 'new_to_crypto: true'. Please ensure this meets our guidelines."
31+
github-token: ${{ secrets.GITHUB_TOKEN }}
32+
body: "A wallet has been added with 'new_to_crypto: true'. Please ensure this meets our guidelines."

0 commit comments

Comments
 (0)