forked from lix-project/lix
dc9510c8d7
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
336 B
YAML
17 lines
336 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@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- run: bash scripts/check-hydra-status.sh
|
|
|