forked from lix-project/lix
Rebecca Turner
2a98ba8b97
The big ones here are `trim-trailing-whitespace` and `end-of-file-fixer`
(which makes sure that every file ends with exactly one newline
character).
Change-Id: Idca73b640883188f068f9903e013cf0d82aa1123
20 lines
360 B
YAML
20 lines
360 B
YAML
name: Hydra status
|
|
|
|
permissions: read-all
|
|
|
|
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@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- run: bash scripts/check-hydra-status.sh
|