Skip to content

Ecosystem

Ecosystem #68

Workflow file for this run

name: Ecosystem
on:
schedule:
- cron: "0 6 * * *" # daily at 06:00 UTC
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ecosystem-${{ github.ref }}
cancel-in-progress: true
jobs:
load-repos:
if: github.event.repository.fork == false
runs-on: ubuntu-latest
outputs:
repos: ${{ steps.read.outputs.repos }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- id: read
run: echo "repos=$(jq -c . .github/repos.json)" >> "$GITHUB_OUTPUT"
test:
if: github.event.repository.fork == false
name: "${{ matrix.repo.name }}"
needs: load-repos
strategy:
fail-fast: false
matrix:
repo: ${{ fromJson(needs.load-repos.outputs.repos || '[]') }}
uses: ./.github/workflows/ecosystem-run.yml
with:
repo_url: ${{ matrix.repo.url }}
next_version: "16.1"