Update README with cda.
Repositories Management System details.
#23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cdaprod-Solutions Org Runner Status Checks | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 */6 * * *' # Schedule to run every 6 hours | ||
jobs: | ||
check-runner-status: | ||
name: Check ${{ matrix.runner-label }} status | ||
runs-on: [self-hosted, ${{ matrix.runner-label }}] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
runner-label: ['frontend', 'backend', 'api'] # Replace with your actual runner labels | ||
steps: | ||
- name: Verify Runner | ||
run: | | ||
echo "This job is running on a self-hosted runner named ${{ matrix.runner-label }}" |