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
1 change: 1 addition & 0 deletions website/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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).
Expand Down
Loading