Skip to content

Commit f8ccb2b

Browse files
author
Gregg Cochran
committed
fix: repo hygiene β€” correct URLs, add CODEOWNERS/dependabot, update docs
- README: fix all copilot-cli-quickstart-campair β†’ copilot-cli-quickstart - SECURITY.md: add 1.1.x to supported versions table - catalog.yml: correct lesson count (8 Dev, 7 Non-Dev) - CONTRIBUTING.md: add SKILL.md sync reminder - Add .github/CODEOWNERS (@DUBSOpenHub owns all) - Add .github/dependabot.yml (GitHub Actions ecosystem)
1 parent fee51d1 commit f8ccb2b

6 files changed

Lines changed: 18 additions & 8 deletions

File tree

β€Ž.github/CODEOWNERSβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Default owner for everything in the repo
2+
* @DUBSOpenHub

β€Ž.github/dependabot.ymlβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

β€ŽCONTRIBUTING.mdβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ You don't need to write code to help. Open an [Issue](https://github.com/DUBSOpe
6161
- 🎯 **One concept per lesson** β€” don't overwhelm
6262
- ❌ **Never fabricate** β€” link to real docs
6363
- πŸ§ͺ **Test your changes** β€” run through the conversation flow
64+
- πŸ”„ **Keep SKILL.md in sync** β€” the skill file exists in two locations (`skills/copilot-cli-quickstart/SKILL.md` and `.github/skills/copilot-cli-quickstart/SKILL.md`). If you edit one, copy the changes to the other so they stay identical.
6465

6566
## πŸ“‹ Pull Request Guidelines
6667

β€ŽREADME.mdβ€Ž

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ Designed for **absolute beginners**. Even if you've never touched a terminal, we
3737
Clone the repo and copy the skill to your personal skills directory:
3838

3939
```bash
40-
git clone https://github.com/DUBSOpenHub/copilot-cli-quickstart-campair.git
40+
git clone https://github.com/DUBSOpenHub/copilot-cli-quickstart.git
4141
mkdir -p ~/.copilot/skills
42-
cp -r copilot-cli-quickstart-campair/.github/skills/copilot-cli-quickstart ~/.copilot/skills/
42+
cp -r copilot-cli-quickstart/.github/skills/copilot-cli-quickstart ~/.copilot/skills/
4343
```
4444

4545
Then in a Copilot CLI session, run `/skills reload` to pick it up.
@@ -49,8 +49,8 @@ Then in a Copilot CLI session, run `/skills reload` to pick it up.
4949
Clone the repo and start Copilot CLI from inside it:
5050

5151
```bash
52-
git clone https://github.com/DUBSOpenHub/copilot-cli-quickstart-campair.git
53-
cd copilot-cli-quickstart-campair
52+
git clone https://github.com/DUBSOpenHub/copilot-cli-quickstart.git
53+
cd copilot-cli-quickstart
5454
copilot
5555
```
5656

@@ -244,9 +244,9 @@ This repo has **Dependabot alerts** and **automated security updates** enabled.
244244
Got ideas to make this tutor even better? 🎨 See [CONTRIBUTING.md](CONTRIBUTING.md) for the full guide!
245245

246246
**Quick ways to help:**
247-
- πŸ› [Report a bug](https://github.com/DUBSOpenHub/copilot-cli-quickstart-campair/issues/new?template=bug_report.md)
248-
- πŸ’‘ [Suggest a feature](https://github.com/DUBSOpenHub/copilot-cli-quickstart-campair/issues/new?template=feature_request.md)
249-
- πŸ“š [Propose a lesson](https://github.com/DUBSOpenHub/copilot-cli-quickstart-campair/issues/new?template=lesson_idea.md)
247+
- πŸ› [Report a bug](https://github.com/DUBSOpenHub/copilot-cli-quickstart/issues/new?template=bug_report.md)
248+
- πŸ’‘ [Suggest a feature](https://github.com/DUBSOpenHub/copilot-cli-quickstart/issues/new?template=feature_request.md)
249+
- πŸ“š [Propose a lesson](https://github.com/DUBSOpenHub/copilot-cli-quickstart/issues/new?template=lesson_idea.md)
250250
- ✏️ Fix a typo β€” just open a PR!
251251

252252
See [TESTING.md](TESTING.md) for conversation playbooks and QA checklists.

β€ŽSECURITY.mdβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
| Version | Supported |
66
|---------|-----------|
7+
| 1.1.x | βœ… Yes |
78
| 1.0.x | βœ… Yes |
89

910
## 🚨 Reporting a Vulnerability

β€Žskills/copilot-cli-quickstart/catalog.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Copilot CLI Quick Start
44
description: >
55
Interactive tutor skill that teaches absolute beginners how to use GitHub
66
Copilot CLI. Offers guided lessons across Developer and Non-Developer tracks
7-
(up to 8 per track), plus on-demand Q&A for any Copilot CLI question.
7+
(8 Developer, 7 Non-Developer), plus on-demand Q&A for any Copilot CLI question.
88
Say "start tutorial" or ask anything!
99
emoji: "πŸš€"
1010
codename: The Friendly Terminal Tutor

0 commit comments

Comments
Β (0)