Skip to content

Commit 1c38f55

Browse files
authored
Merge pull request #8711 from ISISComputingGroup/project_board_checks
Project board checks
2 parents 3ca0255 + 7d4a6dc commit 1c38f55

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Project Board Checks
2+
on:
3+
schedule:
4+
- cron: "0 8-20/2 * * 1-5"
5+
workflow_dispatch:
6+
7+
jobs:
8+
check:
9+
runs-on: "ubuntu-latest"
10+
steps:
11+
- name: run check
12+
run: |
13+
output=$(curl -s --location --fail https://dataweb2.isis.rl.ac.uk/projectboardchecks)
14+
echo $output | jq -r '.details[]'
15+
echo $output | jq -er '.details | length == 0'
16+
shell: bash

0 commit comments

Comments
 (0)