blob: d85999256d3f5e4e73a8d778610b2a5cf7563ded (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
name: Hydra status
on:
schedule:
- cron: "12,42 * * * *"
workflow_dispatch:
permissions:
contents: read
jobs:
check_hydra_status:
name: Check Hydra status
if: github.repository_owner == 'NixOS'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: bash scripts/check-hydra-status.sh
|