We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 20bd8ca + 41275f7 commit 341f4abCopy full SHA for 341f4ab
.github/workflows/wallets-check.yml
@@ -1,9 +1,9 @@
1
-name: Check Wallet Data
+name: Check Wallet Data for new_to_crypto
2
3
on:
4
pull_request:
5
paths:
6
- - 'data/wallets/wallet-data.ts'
+ - "data/wallets/wallet-data.ts"
7
8
jobs:
9
check_new_to_crypto:
@@ -12,7 +12,7 @@ jobs:
12
- name: Checkout repository
13
uses: actions/checkout@v3
14
15
- - name: Check for "new_to_crypto: true"
+ - name: Check for new_to_crypto
16
id: check_new_to_crypto
17
run: |
18
if git diff --name-only HEAD^ | grep -q "data/wallets/wallet-data.ts"; then
@@ -24,7 +24,7 @@ jobs:
24
fi
25
26
27
- - name: Comment on PR if "new_to_crypto: true" is added
+ - name: Comment on PR if new_to_crypto is added
28
if: steps.check_new_to_crypto.outputs.new_to_crypto_found == 'true'
29
uses: actions-ecosystem/action-add-comment@v1
30
with:
0 commit comments