Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/ci-results/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@
// Also load devices.json to include entries not visible in the GitHub API
// (e.g. unit tests from tests.yml which is a separate workflow)
try {
const devData = await fetch(RESULTS_BASE + 'devices.json');
const devData = await fetch(RESULTS_BASE + 'devices.json?v=' + Date.now(), { cache: 'no-store' });
if (devData.ok) {
const { devices } = await devData.json();
for (const d of devices) {
Expand Down
Loading