From 52e902a94723eebafe5381e6cc0b6987105155e4 Mon Sep 17 00:00:00 2001 From: Aaron Powell Date: Tue, 14 Jul 2026 11:53:14 +1000 Subject: [PATCH] Fixing some stuff with learning hub and app automations --- website/astro.config.mjs | 1 + .../using-automations-in-copilot-app.md | 18 ++++++++++-------- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/website/astro.config.mjs b/website/astro.config.mjs index 1df5c300..253dace8 100644 --- a/website/astro.config.mjs +++ b/website/astro.config.mjs @@ -76,6 +76,7 @@ export default defineConfig({ items: [ "learning-hub/github-copilot-app", "learning-hub/working-with-canvas-extensions", + "learning-hub/using-automations-in-copilot-app", "learning-hub/what-are-agents-skills-instructions", "learning-hub/agents-and-subagents", "learning-hub/understanding-copilot-context", diff --git a/website/src/content/docs/learning-hub/using-automations-in-copilot-app.md b/website/src/content/docs/learning-hub/using-automations-in-copilot-app.md index 86dfea88..c5918e1b 100644 --- a/website/src/content/docs/learning-hub/using-automations-in-copilot-app.md +++ b/website/src/content/docs/learning-hub/using-automations-in-copilot-app.md @@ -1,10 +1,10 @@ --- -title: 'Using Automations in the GitHub Copilot app' -description: 'A practical guide to getting started with Copilot app automations using templates, iterative refinement, and real-world examples.' +title: "Using Automations in the GitHub Copilot app" +description: "A practical guide to getting started with Copilot app automations using templates, iterative refinement, and real-world examples." authors: - GitHub Copilot Learning Hub Team lastUpdated: 2026-06-17 -estimatedReadingTime: '10 minutes' +estimatedReadingTime: "10 minutes" tags: - copilot-app - automations @@ -61,13 +61,15 @@ If your first version is only 70% right, that is normal. The fastest path is to Here is a real in-app automation used on the `github/awesome-copilot` repository: -| Field | Value | -|---|---| -| **Name** | Awesome Copilot daily PR summary | -| **Interval** | Daily at 09:00 | -| **Mode** | Autopilot | +| Field | Value | +| ---------------- | --------------------------------------------------------------------------------------------------------- | +| **Name** | Awesome Copilot daily PR summary | +| **Interval** | Daily at 09:00 | +| **Mode** | Autopilot | | **What it does** | Pulls open PRs via `gh api`, filters to updates in the last 24 hours, and returns a concise summary table | +[![Create Automation](https://img.shields.io/badge/automation-daily_pr_summary-blue?logo=github-copilot)](ghapp://automations/new?name=Awesome%20Copilot%20daily%20PR%20summary&trigger=daily&time=09%3A00&prompt=Pulls%20open%20PRs%20via%20gh%20api%2C%20filters%20to%20updates%20in%20the%20last%2024%20hours%2C%20and%20returns%20a%20concise%20summary%20table) + Why this works well: - It is narrowly scoped (one repo, one reporting goal).