Skip to content

ci: wait for pipeline #15

ci: wait for pipeline

ci: wait for pipeline #15

Workflow file for this run

---
name: Daily repo check
on:
push:
branches:
- feat/check-repos
# schedule:
# - cron: "15 4,5 * * *"
jobs:
lint:
uses: singnet/das/.github/workflows/invoke-workflow.yml@feat/check-repos
with:
workflow: ${{ matrix.repo.workflow_id }}
repo: ${{ matrix.repo.name }}
secrets: inherit
strategy:
matrix:
repo: ${{ fromJson(vars.SCHEDULED_REPOS) }}
notify-mattermost:
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
repo: ${{ needs.lint.outputs.* }}
steps:
- name: Create mattermost message
run: |
echo "JSON: "
echo "${{ needs.lint.outputs.conclusion }}"
# - name: Notify Mattermost
# uses: singnet/integration-github-mattermost@master
# with:
# webhook-url: ${{ secrets.MATTERMOST_WEBHOOK_URL }}