Skip to content

Commit

Permalink
chore: edit ssl check
Browse files Browse the repository at this point in the history
  • Loading branch information
rudemex committed May 18, 2022
1 parent 405514e commit b597c10
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/check-domain.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Check domains

on:
push:
branches: [ master ]
#schedule:
# - cron: '0 8 * * *'

jobs:
hello:
runs-on: ubuntu-latest
name: Check domain
strategy:
matrix:
domain:
- www.gorro.com.ar
- tienda.gorro.com.ar
- www.tresdoce.com.ar
- www.estudiofluk.com.ar
- apicedes.tresdoce.com.ar
- www.estudiohamaca.com.ar
- www.adipol.com.ar
- www.fragrancemarket.com.ar
- jenkins.tresdoce.com.ar
- static-pre.tresdoce.com.ar
- static.tresdoce.com.ar
-
steps:
- name: Check domain SSL and registry expire date
id: check-domain
uses: codex-team/action-check-domain@v1
with:
url: ${{ matrix.domain }}

- run: echo 'SSL cert has ${{ steps.check-domain.outputs.ssl-expire-days-left }} days left'
if: ${{ steps.check-domain.outputs.ssl-expire-days-left }}

0 comments on commit b597c10

Please sign in to comment.