Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Workflow Status
description: Status badges for all GitHub Actions workflows in the repository.
sidebar:
order: 999
order: 1000
---

This page shows the current status of all agentic workflows in the repository.
Expand Down Expand Up @@ -41,6 +41,7 @@ This page shows the current status of all agentic workflows in the repository.
[![Smoke Copilot](https://github.com/githubnext/gh-aw/actions/workflows/smoke-copilot.lock.yml/badge.svg)](https://github.com/githubnext/gh-aw/actions/workflows/smoke-copilot.lock.yml)
[![Smoke GenAIScript](https://github.com/githubnext/gh-aw/actions/workflows/smoke-genaiscript.lock.yml/badge.svg)](https://github.com/githubnext/gh-aw/actions/workflows/smoke-genaiscript.lock.yml)
[![Smoke OpenCode](https://github.com/githubnext/gh-aw/actions/workflows/smoke-opencode.lock.yml/badge.svg)](https://github.com/githubnext/gh-aw/actions/workflows/smoke-opencode.lock.yml)
[![Smoke Outpost - Smoke Test Failure Investigator](https://github.com/githubnext/gh-aw/actions/workflows/smoke-outpost.lock.yml/badge.svg)](https://github.com/githubnext/gh-aw/actions/workflows/smoke-outpost.lock.yml)
[![Technical Documentation Writer for GitHub Actions](https://github.com/githubnext/gh-aw/actions/workflows/technical-doc-writer.lock.yml/badge.svg)](https://github.com/githubnext/gh-aw/actions/workflows/technical-doc-writer.lock.yml)
[![Test jqschema](https://github.com/githubnext/gh-aw/actions/workflows/test-jqschema.lock.yml/badge.svg)](https://github.com/githubnext/gh-aw/actions/workflows/test-jqschema.lock.yml)
[![Test Post-Steps Workflow](https://github.com/githubnext/gh-aw/actions/workflows/test-post-steps.lock.yml/badge.svg)](https://github.com/githubnext/gh-aw/actions/workflows/test-post-steps.lock.yml)
Expand Down
4 changes: 2 additions & 2 deletions scripts/generate-status-badges.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const __dirname = path.dirname(__filename);

// Paths
const WORKFLOWS_DIR = path.join(__dirname, '../.github/workflows');
const OUTPUT_PATH = path.join(__dirname, '../docs/src/content/docs/reference/status.md');
const OUTPUT_PATH = path.join(__dirname, '../docs/src/content/docs/status.md');

// Repository owner and name
const REPO_OWNER = 'githubnext';
Expand Down Expand Up @@ -70,7 +70,7 @@ function generateMarkdown(workflows) {
lines.push('title: Workflow Status');
lines.push('description: Status badges for all GitHub Actions workflows in the repository.');
lines.push('sidebar:');
lines.push(' order: 999');
lines.push(' order: 1000');
lines.push('---');
lines.push('');

Expand Down
Loading