Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move the rebase episode to be optional #17

Merged
merged 1 commit into from
Dec 2, 2024
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
2 changes: 1 addition & 1 deletion config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ episodes:
- 05-forks.md
- 06-conflict.md
- 07-history.md
- 08-rebase.md
- End.md
- 08-rebase.md
- 09-pre-commit.md

# Information for Learners
Expand Down
3 changes: 0 additions & 3 deletions episodes/07-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,9 +268,6 @@ a commit that introduced a bug.

Your team will decide what approach is right
for your project.
If you choose to perform normal merge's on
your PRs we recommend rebasing your feature branch
before the PR is ready for review.

:::::::::::::::::::::::::::::::::::::::: keypoints

Expand Down
2 changes: 1 addition & 1 deletion episodes/08-rebase.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Rebasing
title: 'Rebasing'
teaching: 15
exercises: 10
---
Expand Down
2 changes: 1 addition & 1 deletion episodes/09-pre-commit.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 'Optional: Pre-commit'
title: 'Pre-commit'
teaching: 10
exercises: 10
---
Expand Down
9 changes: 8 additions & 1 deletion episodes/End.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ Please remember to fill out your post-workshop feedback.
This feedback is vital for us to keep improving the lesson
for other learners.

Episodes after this **End** page are optional.
Your instructor may choose to teach these episodes
if time permits.
Otherwise feel free to work through the episodes
in your own time.

### Where to next?

We've covered a lot over the last two workshops
Expand All @@ -19,5 +25,6 @@ when it comes to GitHub!
GitHub training.
- In this lesson you saw automated testing
of PRs using [GitHub Actions](https://learn.microsoft.com/en-us/training/modules/introduction-to-github-actions/) which you might like to explore more.
- These tests ran [pre-commit](https://pre-commit.com/) checks which you can set up locally to run before you commit.
- The optional [rebasing episode](./08-rebase.md) guides you through rebasing a branch.
- These PR tests ran [pre-commit](https://pre-commit.com/) checks which you can set up locally to run before you commit.
The optional [pre-commit episode](./09-pre-commit.md) outlines how to set up some basic checks.