You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,6 @@ For development setup and contribution guidelines, see [CONTRIBUTING.md](CONTRIB
67
67
We welcome your feedback on GitHub Agentic Workflows! Please file bugs and feature requests as issues in this repository,
68
68
and share your thoughts in the `#continuous-ai` channel in the [GitHub Next Discord](https://gh.io/next-discord).
69
69
70
-
## 📊 Workflow Status
70
+
## 🧪 Labs
71
71
72
-
See the [Workflow Status](https://githubnext.github.io/gh-aw/status/) page for a comprehensive overview of all agentic workflows in this repository, including their current status, schedules, and configurations.
72
+
See the [Labs](https://githubnext.github.io/gh-aw/labs/) page for experimental agentic workflows used by the team to learn, build, and use agentic workflows.
Copy file name to clipboardExpand all lines: docs/src/content/docs/labs.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
---
2
-
title: Workflow Status
3
-
description: Status badges for all GitHub Actions workflows in the repository.
2
+
title: Labs
3
+
description: Experimental agentic workflows used by the team to learn and build.
4
4
sidebar:
5
5
order: 1000
6
6
---
7
7
8
-
Status of all agentic workflows. [Browse source files](https://github.com/githubnext/gh-aw/tree/main/.github/workflows).
8
+
These are experimental agentic workflows used by the GitHub Next team to learn, build, and use agentic workflows. [Browse source files](https://github.com/githubnext/gh-aw/tree/main/.github/workflows).
@@ -159,15 +159,15 @@ function generateMarkdown(workflows) {
159
159
160
160
// Frontmatter
161
161
lines.push("---");
162
-
lines.push("title: Workflow Status");
163
-
lines.push("description: Status badges for all GitHub Actions workflows in the repository.");
162
+
lines.push("title: Labs");
163
+
lines.push("description: Experimental agentic workflows used by the team to learn and build.");
164
164
lines.push("sidebar:");
165
165
lines.push(" order: 1000");
166
166
lines.push("---");
167
167
lines.push("");
168
168
169
169
// Introduction
170
-
lines.push("Status of all agentic workflows. [Browse source files](https://github.com/githubnext/gh-aw/tree/main/.github/workflows).");
170
+
lines.push("These are experimental agentic workflows used by the GitHub Next team to learn, build, and use agentic workflows. [Browse source files](https://github.com/githubnext/gh-aw/tree/main/.github/workflows).");
171
171
lines.push("");
172
172
173
173
// Sort workflows alphabetically by name
@@ -206,7 +206,7 @@ function generateMarkdown(workflows) {
206
206
}
207
207
208
208
// Main execution
209
-
console.log("Generating status badges documentation...");
209
+
console.log("Generating labs documentation...");
210
210
211
211
// Read all .lock.yml files
212
212
constlockFiles=fs
@@ -257,5 +257,5 @@ if (!fs.existsSync(outputDir)) {
257
257
258
258
// Write the output
259
259
fs.writeFileSync(OUTPUT_PATH,markdown,"utf-8");
260
-
console.log(`✓ Generated status badges documentation: ${OUTPUT_PATH}`);
allPassed&=assertNotContains(output,"| unknown |","No workflows with unknown engine (should default to copilot)");
102
102
103
103
// Test 8: Frontmatter is correct
104
-
allPassed&=assertContains(output,"title: Workflow Status","Frontmatter title is present");
104
+
allPassed&=assertContains(output,"title: Labs","Frontmatter title is present");
105
105
106
106
allPassed&=assertContains(
107
107
output,
108
-
"description: Status badges for all GitHub Actions workflows in the repository.",
108
+
"description: Experimental agentic workflows used by the team to learn and build.",
109
109
"Frontmatter description is present"
110
110
);
111
111
112
112
// Test 9: Introduction text is present (streamlined)
113
113
allPassed&=assertContains(
114
114
output,
115
-
"Status of all agentic workflows. [Browse source files](https://github.com/githubnext/gh-aw/tree/main/.github/workflows).",
115
+
"These are experimental agentic workflows used by the GitHub Next team to learn, build, and use agentic workflows. [Browse source files](https://github.com/githubnext/gh-aw/tree/main/.github/workflows).",
0 commit comments