2021-11-30 16:32:40 +00:00
|
|
|
name: Hydra status
|
2022-07-05 10:06:58 +00:00
|
|
|
|
|
|
|
permissions: read-all
|
|
|
|
|
2021-11-30 16:32:40 +00:00
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "12,42 * * * *"
|
|
|
|
workflow_dispatch:
|
2022-07-01 00:29:30 +00:00
|
|
|
|
2021-11-30 16:32:40 +00:00
|
|
|
jobs:
|
|
|
|
check_hydra_status:
|
|
|
|
name: Check Hydra status
|
|
|
|
if: github.repository_owner == 'NixOS'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-04-13 12:10:29 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-11-30 16:32:40 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- run: bash scripts/check-hydra-status.sh
|
|
|
|
|