forked from lix-project/lix
17 lines
340 B
YAML
17 lines
340 B
YAML
|
name: Hydra status
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: "12,42 * * * *"
|
||
|
workflow_dispatch:
|
||
|
jobs:
|
||
|
check_hydra_status:
|
||
|
name: Check Hydra status
|
||
|
if: github.repository_owner == 'NixOS'
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2.4.0
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
- run: bash scripts/check-hydra-status.sh
|
||
|
|