Problem
In content/full-day/7-github-flow.md, learners create add-filter, run git add ., select Generate Commit Message, press Enter, and then run git push -u origin add-filter. No git commit command or Source Control commit action is provided.
Generating a commit message does not itself create a commit. The branch therefore has no commits ahead of main, and gh pr create can fail because there are no commits between the branches. This blocks the pull-request portion of the workshop.
Suggested change
Add an explicit commit action after generating the message, and verify the branch is ahead of main before pushing and opening the PR.
Acceptance criteria
Problem
In
content/full-day/7-github-flow.md, learners createadd-filter, rungit add ., select Generate Commit Message, press Enter, and then rungit push -u origin add-filter. Nogit commitcommand or Source Control commit action is provided.Generating a commit message does not itself create a commit. The branch therefore has no commits ahead of
main, andgh pr createcan fail because there are no commits between the branches. This blocks the pull-request portion of the workshop.Suggested change
Add an explicit commit action after generating the message, and verify the branch is ahead of
mainbefore pushing and opening the PR.Acceptance criteria
add-filter.git pushpublishes the feature commit.gh pr createsucceeds from a fresh workshop run.