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
19 changes: 12 additions & 7 deletions .github/aw/actions-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,30 @@
"version": "v6.0.2",
"sha": "de0fac2e4500dabe0009e67214ff5f5447ce83dd"
},
"actions/download-artifact@v8": {
"actions/download-artifact@v8.0.1": {
"repo": "actions/download-artifact",
"version": "v8",
"version": "v8.0.1",
"sha": "3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c"
},
"actions/github-script@v8": {
"repo": "actions/github-script",
"version": "v8",
"sha": "ed597411d8f924073f98dfc5c65a23a2325f34cd"
},
"actions/upload-artifact@v7": {
"actions/upload-artifact@v7.0.0": {
"repo": "actions/upload-artifact",
"version": "v7",
"version": "v7.0.0",
"sha": "bbbca2ddaa5d8feaa63e36b76fdaad77386f024f"
},
"github/gh-aw/actions/setup@v0.57.2": {
"github/gh-aw-actions/setup@v0.59.0": {
"repo": "github/gh-aw-actions/setup",
"version": "v0.59.0",
"sha": "066087f607f52664010289ddd52198f33044c38a"
},
"github/gh-aw/actions/setup@v0.59.0": {
"repo": "github/gh-aw/actions/setup",
"version": "v0.57.2",
"sha": "32b3a711a9ee97d38e3989c90af0385aff0066a7"
"version": "v0.59.0",
"sha": "7d1a2798f21c06247ce115b7c7b8ddd70c8d0dc3"
}
}
}
112 changes: 52 additions & 60 deletions .github/workflows/codeowner-update.lock.yml

Large diffs are not rendered by default.

106 changes: 49 additions & 57 deletions .github/workflows/duplicate-resource-detector.lock.yml

Large diffs are not rendered by default.

1,198 changes: 1,198 additions & 0 deletions .github/workflows/learning-hub-updater.lock.yml

Large diffs are not rendered by default.

84 changes: 84 additions & 0 deletions .github/workflows/learning-hub-updater.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
---
name: "Learning Hub Updater"
description: "Daily check for new GitHub Copilot features and updates. Opens a PR if the Learning Hub needs updating."
on:
schedule: daily
workflow_dispatch:
tools:
bash: ["curl", "gh"]
edit:
web-fetch:
github:
toolsets: [repos]
allowed-domains:
- github.blog
- code.visualstudio.com
- nishanil.github.io
safe-outputs:
create-pull-request:
labels: [automated-update, copilot-updates]
title-prefix: "[bot] "
Comment thread
aaronpowell marked this conversation as resolved.
base-branch: staged
---

# Check for Awesome GitHub Copilot Updates

You are a documentation maintainer for the Awesome GitHub Copilot Learning Hub. Your job is to check for recent updates to GitHub Copilot and determine if the Learning Hub pages in `website/learning-hub` need updating.

## Step 1 — Gather recent Copilot updates

Use `web-fetch` to read the following pages and extract the latest entries from the past 7 days:

- https://github.blog/changelog/label/copilot/ — official changelog
- https://github.com/github/copilot-cli/blob/main/changelog.md — CLI changelog
- https://github.blog/ai-and-ml/github-copilot/ — blog posts
- https://code.visualstudio.com/updates - VS Code release notes (filter for Copilot-related updates)
- https://nishanil.github.io/copilot-guide/ - community-maintained guide (check for recent commits or updates)

Comment thread
aaronpowell marked this conversation as resolved.
Also use `gh` CLI to check the latest releases and commits in the `github/copilot-cli` repo.

Look for:

- New features or capabilities (new slash commands, new agent modes, new integrations)
- Significant changes to existing features (renames, deprecations, GA announcements)
- New customization options (instructions, agents, skills, MCP, hooks, plugins)
- New platform features (memory, spaces, SDK updates)
- Notable community projects built on Copilot

## Step 2 — Compare against the current Learning Hub

Read the pages in the current Learning Hub and compare the features documented there against what you found in Step 1.

Identify:

- **Missing features** — new capabilities not yet documented
- **Outdated information** — features that have been renamed, deprecated, or significantly changed
- **Missing links** — new official docs or blog posts not in the Further Reading section

If there is nothing new or everything is already up to date, stop here and report that no updates are needed.

## Step 3 — Update the Learning Hub

If updates are needed, make a decision on whether a new page needs to be added (e.g., for a major new feature) or if existing pages can be updated with new sections.

### For new pages:

A new page should be created for major features or capabilities that warrant their own documentation (e.g., a new feature of Copilot, a new pattern for working with Copilot, etc.).

To create a new page:

1. Create a new markdown file in the appropriate section of `website/learning-hub` (e.g., `website/learning-hub/agents/new-agent.md`).
2. Write a summary of the new feature, how it works, and its use cases.
3. Add a "Further Reading" section with links to official documentation, blog posts, and relevant community resources.

### For updates to existing pages:

If the new information can be added to existing pages, edit those pages to include refinements, new sections, or updated information as needed. Make sure to update any relevant links in the "Further Reading" sections.

## Step 4 — Open a pull request

Create a pull request with your changes. The PR title should summarize what was updated (e.g., "Add/plan command and model marketplace documentation"). The PR body should list:

1. What new features or changes were found
2. What sections of the guide were updated
3. Links to the source announcements
Loading
Loading