File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 44 schedule :
55 - cron : ' 0 4 * * *'
66 workflow_dispatch :
7+ push :
8+ branches :
9+ - main
10+ paths :
11+ - ' scripts/fetch-ci-nightly-data.js'
12+ - ' .github/workflows/fetch-ci-nightly-data.yaml'
713
814jobs :
915 fetch-and-commit-data :
1319 - name : Checkout
1420 uses : actions/checkout@v4
1521 - name : Update dashboard data
22+ # Use bash to fail fast:
23+ # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell
24+ shell : bash
1625 run : |
1726 # fetch ci nightly data as temporary file
1827 node scripts/fetch-ci-nightly-data.js | tee tmp-data.json
Original file line number Diff line number Diff line change 11import { useEffect , useState } from "react" ;
22import { DataTable } from "primereact/datatable" ;
33import { Column } from "primereact/column" ;
4+ import Head from "next/head" ;
45import { weatherTemplate , getWeatherIndex } from "../components/weatherTemplate" ;
56
67
@@ -243,7 +244,9 @@ useEffect(() => {
243244 return (
244245 < >
245246
246- < title > Kata CI Dashboard</ title >
247+ < Head >
248+ < title > Kata CI Dashboard</ title >
249+ </ Head >
247250 < div className = "text-center text-xs md:text-base" >
248251 < h1 className = { "text-4xl mt-4 ml-4 mb-6 underline text-inherit \
249252 hover:text-blue-500" } >
You can’t perform that action at this time.
0 commit comments