Skip to content

Commit

Permalink
ci: ssl revalidator must only update pendings
Browse files Browse the repository at this point in the history
  • Loading branch information
ryantk committed Jan 3, 2024
1 parent 5a25a9c commit 32a12af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/support-update-ssl-cert-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
--custom-domain-name ${{ steps.vars.customDomainName }} \
--only-show-errors | jq --raw-output .domainValidationState)
needsToReEvaluate=$([ -z "$(echo domainValidationState | grep "Pending")" ] && echo "no" || echo "yes")
needsToReEvaluate=$([ -z "$(echo domainValidationState | grep "PendingRevalidation")" ] && echo "no" || echo "yes")
echo needsToReEvaluate=$needsToReEvaluate >> $GITHUB_OUTPUT
- name: Regenerate validation token
Expand Down

0 comments on commit 32a12af

Please sign in to comment.