Skip to content

ci: get conclusion repos #31

ci: get conclusion repos

ci: get conclusion repos #31

Workflow file for this run

---
name: Daily repo check
on:
push:
branches:
- master
- feat/check-repos
# schedule:
# - cron: "15 4,5 * * *"
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: Create mattermost message
if: steps.running-workflow.outputs.conclusion != 'success'
run: |
echo "Something happend on the lint of ${{ matrix.repo.name }} - ${{ steps.running-workflow.outputs.conclusion }}"