Skip to content

Commit

Permalink
📝 Add cleanup script to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
roycornelissen authored Dec 2, 2024
1 parent 2bd9c37 commit 1fb2f1c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,14 @@ You will start with the code base in the [code/start/legacy folder](./code/start
You can clone this repo and start working on the labs which can be found on the [Wiki pages of this repository](https://github.com/XpiritCommunityEvents/LegacyLiftOffWorkshop/wiki). We recommend that you keep a tab open with the Wiki at all times during the lab.

Have fun!

### Cleanup

To clean up all the attendee repos:

```bash
for repo in $(gh repo list XpiritCommunityEvents --json name --jq '.[].name | select(test("^attendeello"))'); do
echo "Deleting repository: $repo"
gh repo delete "XpiritCommunityEvents/$repo" --yes
done
```

0 comments on commit 1fb2f1c

Please sign in to comment.