blob: b97076bd765ce65c07826a2a00a90d3940bc4bdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|