tigger 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -261,7 +261,7 @@ We now walk through a simple use case of committing two files to a repository:
|
|
|
261
261
|
5. Post the commit tree SHA together with the latest commit SHA. A commit SHA is returned. The endpoint is `/git/commits`.
|
|
262
262
|
6. Finally, update the repository's head by posting the commit SHA. The endpoint is `/git/refs/heads/master`.
|
|
263
263
|
|
|
264
|
-
Perhaps the best thing to say about this process is that it
|
|
264
|
+
Perhaps the best thing to say about this process is that it begins to make sense as familiarity grows.
|
|
265
265
|
|
|
266
266
|
As an aside, it is likely that there will be some interaction with a database as well as with the GitHub API in the course of any handler's execution and therefore it might be worth looking at the [Murmuration](https://github.com/djalbat/murmuration) package. In fact the example handlers and operations were originally based on functions written to work with this package.
|
|
267
267
|
|