Skip to content

Commit

Permalink
Merge everything from dev onto main (#48)
Browse files Browse the repository at this point in the history
should already be matching but i want to make the github UI look happy
  • Loading branch information
Maren authored Oct 7, 2023
1 parent e7dbfa5 commit 5c3879f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Pairing Bot interacts through private messages on [Zulip](https://zulipchat.com/
* `unsubscribe` to stop getting matched entirely
* This removes the user from the database. Since logs are anonymous, after **unsubscribe** Pairing Bot has no record of that user
* `add-review` to add a publicly viewable review to help other users learn about Pairing Bot.
* `get-reviews` to view the 5 most recent reviews for Pairing Bot. You can pass in an integer param to specify the number of reviews to get back.
* `get-reviews` to view the 5 most recent reviews for Pairing Bot. You can pass in an integer param to specify the number of reviews to get back.
* `cookie` to get the most amazing cookie recipe!

### Information for Pairing Bot admins
* Runs in [GCP](https://cloud.google.com/) on [App Engine](https://cloud.google.com/appengine/docs/standard/)
* Uses [Firestore](https://cloud.google.com/firestore/docs/) for its database
Expand All @@ -34,9 +34,9 @@ Pairing Bot interacts through private messages on [Zulip](https://zulipchat.com/
* A separate Zulip Bot (Pairing Bot [Test Version]) that you can send commands to.
* A separate GC Project with its database, logging and cron job setup.
* A `dev` branch in Github that automatically deploys pushed changes to the GCP project.
* How to Make Changes to Pairing Bot
* How to Make Changes to Pairing Bot
* Contact one of the maintainers of Pairing Bot to learn about the project and gain project permissions.
* Make your code changes on the `dev` branch and push to this Github repo.
* Make your code changes on the `dev` branch and push to this Github repo.
* Check the CloudBuild tab in Google Cloud to make sure that the Pairing Bot project built successfully.
* Test out your changes with the Pairing Bot [Test Version]
* Check the Logs in Google Cloud to make sure your change did not introduce any errors.
Expand All @@ -46,3 +46,4 @@ Pairing Bot interacts through private messages on [Zulip](https://zulipchat.com/
Pairing Bot is an [RC community project](https://recurse.zulipchat.com/#narrow/stream/198090-rc-community.20software).

**Your contributions are welcome and encouraged, no matter your prior experience!**
.
2 changes: 1 addition & 1 deletion dispatch.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const helpMessage string = "**How to use Pairing Bot:**\n" +
"* `get-reviews` to get recent reviews of Pairing Bot\n * You can specify the number of reviews to view by specifying `get reviews {num_reviews}`\n" +
"* `cookie` only use this command if you like :cookie::cookie::cookie:\n" +
"* `unsubscribe` to stop getting matched entirely\n\n" +
"If you've found a bug, please [submit an issue on github](https://github.com/thwidge/pairing-bot/issues)!"
"If you've found a bug, please [submit an issue on github](https://github.com/stillgreenmoss/pairing-bot/issues)!"
const subscribeMessage string = "Yay! You're now subscribed to Pairing Bot!\nCurrently, I'm set to find pair programming partners for you on **Mondays**, **Tuesdays**, **Wednesdays**, **Thursdays**, and **Fridays**.\nYou can customize your schedule any time with `schedule` :)"
const unsubscribeMessage string = "You're unsubscribed!\nI won't find pairing partners for you unless you `subscribe`.\n\nBe well :)"
const notSubscribedMessage string = "You're not subscribed to Pairing Bot <3"
Expand Down

0 comments on commit 5c3879f

Please sign in to comment.