From 9932e13acbcce602e553f2c0d48c8f92f3ae583b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 13 Aug 2026 04:36:48 +0000 Subject: [PATCH] fix: replace raw Unicode emoji in Checkpoint headings with shortcodes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace '## ✅ Checkpoint' with '## :white_check_mark: Checkpoint' across 10 side-quest files. The guidelines require GitHub emoji shortcodes instead of raw Unicode characters in prose and headings. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- workshop/side-quest-11-03-better-prompts.md | 2 +- workshop/side-quest-11-04-annotated-workflow.md | 2 +- workshop/side-quest-11-05-event-triggers.md | 2 +- workshop/side-quest-11-06-anthropic-key.md | 2 +- workshop/side-quest-11-07-openai-key.md | 2 +- workshop/side-quest-11-08-frontmatter-tools-outputs.md | 2 +- workshop/side-quest-11-09-agent-session-phases.md | 2 +- workshop/side-quest-12-01-iterate-agent-output.md | 2 +- workshop/side-quest-13-01-pr-labeler-pattern.md | 2 +- workshop/side-quest-13-01-schedule-expressions.md | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/workshop/side-quest-11-03-better-prompts.md b/workshop/side-quest-11-03-better-prompts.md index bbe8ff1d..b6b0897e 100644 --- a/workshop/side-quest-11-03-better-prompts.md +++ b/workshop/side-quest-11-03-better-prompts.md @@ -147,7 +147,7 @@ posted to the Actions run summary. --- -## ✅ Checkpoint +## :white_check_mark: Checkpoint - [ ] You can name three techniques for improving a task brief - [ ] You have updated your daily status workflow with at least one improvement from this guide diff --git a/workshop/side-quest-11-04-annotated-workflow.md b/workshop/side-quest-11-04-annotated-workflow.md index 0c4a8771..31c77c3f 100644 --- a/workshop/side-quest-11-04-annotated-workflow.md +++ b/workshop/side-quest-11-04-annotated-workflow.md @@ -92,7 +92,7 @@ safe-outputs: --- -## ✅ Checkpoint +## :white_check_mark: Checkpoint - [ ] I changed `emoji:`, ran `gh aw list`, and saw the update reflected - [ ] I removed `safe-outputs:`, observed the compile error, then restored it and confirmed the error was gone diff --git a/workshop/side-quest-11-05-event-triggers.md b/workshop/side-quest-11-05-event-triggers.md index f097fa67..4feae5f0 100644 --- a/workshop/side-quest-11-05-event-triggers.md +++ b/workshop/side-quest-11-05-event-triggers.md @@ -136,7 +136,7 @@ The Daily Repo Status workflow in [Step 7](07-your-first-workflow.md) and the PR That is the core decision: pick the trigger that matches the moment you care about, then pick the write target that matches the object you want the workflow to answer. -## ✅ Checkpoint +## :white_check_mark: Checkpoint - [ ] I can explain the difference between a scheduled workflow and an event-driven workflow - [ ] I know starter trigger blocks for `pull_request`, `push`, `issues`, and `schedule` diff --git a/workshop/side-quest-11-06-anthropic-key.md b/workshop/side-quest-11-06-anthropic-key.md index 19851900..51012e66 100644 --- a/workshop/side-quest-11-06-anthropic-key.md +++ b/workshop/side-quest-11-06-anthropic-key.md @@ -106,7 +106,7 @@ You should see output confirming the file compiled without errors. --- -## ✅ Checkpoint +## :white_check_mark: Checkpoint - [ ] You have an Anthropic account and have generated an API key - [ ] `ANTHROPIC_API_KEY` is stored as a repository secret diff --git a/workshop/side-quest-11-07-openai-key.md b/workshop/side-quest-11-07-openai-key.md index f2217124..3282473f 100644 --- a/workshop/side-quest-11-07-openai-key.md +++ b/workshop/side-quest-11-07-openai-key.md @@ -123,7 +123,7 @@ You should see: --- -## ✅ Checkpoint +## :white_check_mark: Checkpoint - [ ] You have an OpenAI account and have generated an API key - [ ] My new key is listed at `platform.openai.com/api-keys` diff --git a/workshop/side-quest-11-08-frontmatter-tools-outputs.md b/workshop/side-quest-11-08-frontmatter-tools-outputs.md index f9683b79..988cfa28 100644 --- a/workshop/side-quest-11-08-frontmatter-tools-outputs.md +++ b/workshop/side-quest-11-08-frontmatter-tools-outputs.md @@ -113,7 +113,7 @@ Three conventions keep a task brief reliable: --- -## ✅ Checkpoint +## :white_check_mark: Checkpoint - [ ] You can explain what `mode: gh-proxy` does and why it matters for security - [ ] You understand that `safe-outputs` is the only source of write access — not the body text diff --git a/workshop/side-quest-11-09-agent-session-phases.md b/workshop/side-quest-11-09-agent-session-phases.md index 347b28f3..1f835a07 100644 --- a/workshop/side-quest-11-09-agent-session-phases.md +++ b/workshop/side-quest-11-09-agent-session-phases.md @@ -58,7 +58,7 @@ gh aw compile --watch Each save triggers another compile, so you get immediate feedback instead of discovering YAML mistakes later. See [Side Quest: Using `gh aw compile` to Catch Errors Early](side-quest-07-01-compile-workflow.md) for a full walkthrough. -## ✅ Checkpoint +## :white_check_mark: Checkpoint - [ ] I can name the five phases of an agent session in order - [ ] I know what a successful Compiling phase looks like (green success message, `.lock.yml` generated) diff --git a/workshop/side-quest-12-01-iterate-agent-output.md b/workshop/side-quest-12-01-iterate-agent-output.md index aaad6e1e..785f1067 100644 --- a/workshop/side-quest-12-01-iterate-agent-output.md +++ b/workshop/side-quest-12-01-iterate-agent-output.md @@ -104,7 +104,7 @@ Quick run-log check: -## ✅ Checkpoint +## :white_check_mark: Checkpoint - [ ] You triggered a fresh workflow run and captured one real output to review - [ ] You recorded a baseline score for accuracy, completeness, and tone diff --git a/workshop/side-quest-13-01-pr-labeler-pattern.md b/workshop/side-quest-13-01-pr-labeler-pattern.md index 8cd1b54b..cced864c 100644 --- a/workshop/side-quest-13-01-pr-labeler-pattern.md +++ b/workshop/side-quest-13-01-pr-labeler-pattern.md @@ -78,7 +78,7 @@ Compile, push, and test with a PR that changes a workflow file. -## ✅ Checkpoint +## :white_check_mark: Checkpoint - [ ] I created `.github/workflows/pr-labeler.md` with a `pull_request` trigger - [ ] `gh aw compile` completed without errors and `.lock.yml` is committed and pushed diff --git a/workshop/side-quest-13-01-schedule-expressions.md b/workshop/side-quest-13-01-schedule-expressions.md index 1c5118b4..61474265 100644 --- a/workshop/side-quest-13-01-schedule-expressions.md +++ b/workshop/side-quest-13-01-schedule-expressions.md @@ -78,7 +78,7 @@ If none of the fuzzy options match your exact timing need, choose the closest fu > ``` -## ✅ Checkpoint +## :white_check_mark: Checkpoint - [ ] I can explain what a cron expression is at a high level - [ ] I know which fuzzy schedule expression best matches my workflow cadence