File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -132,19 +132,16 @@ jobs:
132132 - name : Validate addToken
133133 if : contains(github.event.issue.labels.*.name, 'addToken') && (!env.NETWORK|| !env.SYMBOL|| !env.NAME|| !env.URL|| !env.DECIMALS|| !env.ADDRESS|| !env.REASON)
134134 run : |
135- echo "${{ env.NETWORK }} ${{ env.URL }} ${{ env.ADDRESS }}"
136135 echo "::error title={Validation failed}::{Missing required fields for adding a token}"
137136 exit 1
138137 - name : Validate symbol
139138 if : env.SYMBOL && contains(env.SYMBOL, ' ')
140139 run : |
141- echo "${{ env.SYMBOL }}"
142140 echo "::error title={Validation failed}::{Symbol cannot contain spaces}"
143141 exit 1
144142 - name : Validate removeToken
145143 if : contains(github.event.issue.labels.*.name, 'removeToken') && (!env.NETWORK || !env.REASON || !env.ADDRESS)
146144 run : |
147- echo "${{ env.NETWORK }} ${{ env.URL }} ${{ env.ADDRESS }}"
148145 echo "::error title={Validation failed}::{Missing required fields for removing a token}"
149146 exit 1
150147 - name : Report error
You can’t perform that action at this time.
0 commit comments