Skip to content

Commit

Permalink
ci: run periodic checks (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
levisingularity authored Jul 25, 2024
1 parent 0748f8d commit 7a6e6f7
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/check-repos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
name: Daily Repository Check

on:
schedule:
- cron: "0 8 * * *"

jobs:
checking-repos:
runs-on: ubuntu-latest
strategy:
matrix:
repo: ${{ fromJson(vars.SCHEDULED_REPOS) }}
steps:
- name: Running workflow
id: running-workflow
uses: singnet/das-cicd@master
with:
workflow: ${{ matrix.repo.workflow_id }}
repo: ${{ matrix.repo.name }}
org: singnet
ref: master
github-token: ${{ secrets.GH_TOKEN }}

- name: Send success notification
if: steps.running-workflow.outputs.conclusion == 'success'
uses: singnet/integration-github-mattermost@master
with:
webhook-url: ${{ secrets.SCHEDULED_REPOS_MATTERMOST_WEBHOOK_URL }}
env:
MATTERMOST_MESSAGE: "SUCCESS - CI workflow succeeded in repository ${{ matrix.repo.name }}"

- name: Send failure notification
if: steps.running-workflow.outputs.conclusion != 'success'
uses: singnet/integration-github-mattermost@master
with:
webhook-url: ${{ secrets.SCHEDULED_REPOS_MATTERMOST_WEBHOOK_URL }}
env:
MATTERMOST_MESSAGE: |-
FAILURE - CI workflow failed in repository ${{ matrix.repo.name }}
Details: ${{ fromJson(steps.running-workflow.outputs.failed_job).url }}
Failed job: ${{ fromJson(steps.running-workflow.outputs.failed_job).failed_at }}

0 comments on commit 7a6e6f7

Please sign in to comment.